1
1
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2
2
<modelVersion >4.0.0</modelVersion >
3
3
<groupId >es.implementations.frameworks</groupId >
4
- <artifactId >Apache-poi</artifactId >
5
- <version >0.0.1-SNAPSHOT</version >
6
- <name >Apache POI</name >
4
+ <artifactId >apache-poi</artifactId >
5
+ <version >1.0.0-RELEASE</version >
7
6
<description >Excel parser usage</description >
8
7
9
- <dependencies >
10
- <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
11
- <dependency >
12
- <groupId >org.apache.poi</groupId >
13
- <artifactId >poi-ooxml</artifactId >
14
- <version >3.17</version >
15
- </dependency >
16
-
17
- <!-- https://mvnrepository.com/artifact/junit/junit -->
18
- <dependency >
19
- <groupId >junit</groupId >
20
- <artifactId >junit</artifactId >
21
- <version >4.12</version >
22
- <scope >test</scope >
23
- </dependency >
24
-
25
- <!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
26
- <dependency >
27
- <groupId >org.assertj</groupId >
28
- <artifactId >assertj-core</artifactId >
29
- <version >3.8.0</version >
30
- <scope >test</scope >
31
- </dependency >
32
-
33
- <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
34
- <dependency >
35
- <groupId >org.mockito</groupId >
36
- <artifactId >mockito-all</artifactId >
37
- <version >1.10.19</version >
38
- <scope >test</scope >
39
- </dependency >
40
-
41
- <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
42
- <dependency >
43
- <groupId >org.projectlombok</groupId >
44
- <artifactId >lombok</artifactId >
45
- <version >1.16.18</version >
46
- <scope >provided</scope >
47
- </dependency >
8
+ <properties >
9
+ <!-- dependencies versions -->
10
+ <apache .poi.version>3.17</apache .poi.version>
11
+
12
+ <!-- test dependencies -->
13
+ <junit .version>4.12</junit .version>
14
+ <assertj .version>3.8.0</assertj .version>
15
+ <mockito .version>1.10.19</mockito .version>
16
+ </properties >
17
+
18
+ <dependencies >
19
+ <!-- excel parser -->
20
+ <dependency >
21
+ <groupId >org.apache.poi</groupId >
22
+ <artifactId >poi-ooxml</artifactId >
23
+ <version >${apache.poi.version} </version >
24
+ </dependency >
25
+
26
+ <!-- other dependencies -->
27
+ <dependency >
28
+ <groupId >org.projectlombok</groupId >
29
+ <artifactId >lombok</artifactId >
30
+ <version >1.16.18</version >
31
+ <scope >provided</scope >
32
+ </dependency >
33
+
34
+ <!-- test dependencies -->
35
+ <dependency >
36
+ <groupId >junit</groupId >
37
+ <artifactId >junit</artifactId >
38
+ <version >${junit.version} </version >
39
+ <scope >test</scope >
40
+ </dependency >
41
+
42
+ <dependency >
43
+ <groupId >org.assertj</groupId >
44
+ <artifactId >assertj-core</artifactId >
45
+ <version >${assertj.version} </version >
46
+ <scope >test</scope >
47
+ </dependency >
48
+
49
+ <dependency >
50
+ <groupId >org.mockito</groupId >
51
+ <artifactId >mockito-all</artifactId >
52
+ <version >${mockito.version} </version >
53
+ <scope >test</scope >
54
+ </dependency >
55
+
48
56
</dependencies >
49
57
</project >
0 commit comments