[BAEL-17326] - Extract versions into properties

This commit is contained in:
amit2103
2019-09-15 17:53:10 +05:30
parent 9154f5e062
commit 60fc96727a
21 changed files with 77 additions and 43 deletions

View File

@@ -100,7 +100,7 @@
<dependency>
<groupId>io.arrow-kt</groupId>
<artifactId>arrow-core</artifactId>
<version>0.7.3</version>
<version>${arrow-core.version}</version>
</dependency>
<dependency>
@@ -117,7 +117,7 @@
<dependency>
<groupId>nl.komponents.kovenant</groupId>
<artifactId>kovenant</artifactId>
<version>3.3.0</version>
<version>${kovenant.version}</version>
<type>pom</type>
</dependency>
@@ -132,13 +132,13 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>27.1-jre</version>
<version>${guava.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-collections-immutable -->
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-collections-immutable</artifactId>
<version>0.1</version>
<version>${kotlinx-collections-immutable.version}</version>
</dependency>
<!-- MockK dependencies-->
@@ -151,26 +151,26 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.8.13</version>
<version>${byte-buddy.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.8.13</version>
<version>${byte-buddy.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>2.6</version>
<version>${objenesis.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.reactivex.rxjava2</groupId>
<artifactId>rxkotlin</artifactId>
<version>2.3.0</version>
<version>${rxkotlin.version}</version>
</dependency>
</dependencies>
@@ -186,6 +186,13 @@
<assertj.version>3.10.0</assertj.version>
<exposed.version>0.10.4</exposed.version>
<mockk.version>1.9.3</mockk.version>
<guava.version>27.1-jre</guava.version>
<kovenant.version>3.3.0</kovenant.version>
<byte-buddy.version>1.8.13</byte-buddy.version>
<objenesis.version>2.6</objenesis.version>
<rxkotlin.version>2.3.0</rxkotlin.version>
<kotlinx-collections-immutable.version>0.1</kotlinx-collections-immutable.version>
<arrow-core.version>0.7.3</arrow-core.version>
</properties>
</project>