[BAEL-18774] - extracted versions into properties

This commit is contained in:
amit.pandey
2019-12-24 17:17:09 +05:30
parent 8ea5a6b46f
commit 8862292d61
18 changed files with 85 additions and 40 deletions

View File

@@ -125,7 +125,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>${junit.version}</version>
</dependency>
<dependency>
@@ -162,10 +162,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>${maven.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>${source.version}</source>
<target>${target.version}</target>
</configuration>
</plugin>
<plugin>
@@ -308,6 +308,10 @@
<!-- okhttp -->
<com.squareup.okhttp3.version>3.4.1</com.squareup.okhttp3.version>
<pact.version>3.5.11</pact.version>
<source.version>1.8</source.version>
<target.version>1.8</target.version>
<junit.version>4.12</junit.version>
<maven.version>3.7.0</maven.version>
</properties>
</project>