Skip to content

Commit

Permalink
Project library version configuration by properties
Browse files Browse the repository at this point in the history
  • Loading branch information
daneeldeveloper committed Jul 1, 2019
1 parent 97e195e commit 545b53c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.source>1.7</maven.compiler.source>
<!-- libraries versions -->
<fj-version>0.4.6</fj-version>
<opencsv-version>4.6</opencsv-version>
<poi-version>3.16</poi-version>
</properties>

<licenses>
Expand All @@ -47,8 +51,6 @@
</developer>
</developers>



<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
Expand Down Expand Up @@ -80,20 +82,20 @@
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>4.6</version>
<version>${opencsv-version}</version>
</dependency>

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.16</version>
<version>${poi-version}</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.16</version>
<version>${poi-version}</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 545b53c

Please sign in to comment.