Merge pull request #515 from square/eric.versions

Group dependency version codes together.
This commit is contained in:
Jake Wharton 2018-04-27 10:27:41 -04:00 committed by GitHub
commit 4f3f74f016
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -64,7 +64,6 @@
<dependency> <dependency>
<groupId>me.eugeniomarletti.kotlin.metadata</groupId> <groupId>me.eugeniomarletti.kotlin.metadata</groupId>
<artifactId>kotlin-metadata</artifactId> <artifactId>kotlin-metadata</artifactId>
<version>1.3.0</version>
</dependency> </dependency>
<!-- <!--
Though we don't use compile-testing, including it is a convenient way to get tools.jar on the Though we don't use compile-testing, including it is a convenient way to get tools.jar on the

View file

@ -30,7 +30,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.7</java.version> <java.version>1.7</java.version>
<kotlin.version>1.2.21</kotlin.version> <kotlin.version>1.2.21</kotlin.version>
<kotlin-metadata.version>1.2.1</kotlin-metadata.version> <kotlin-metadata.version>1.3.0</kotlin-metadata.version>
<!-- Dependencies --> <!-- Dependencies -->
<okio.version>1.14.0</okio.version> <okio.version>1.14.0</okio.version>
@ -110,7 +110,7 @@
<version>${kotlin.version}</version> <version>${kotlin.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>me.eugeniomarletti</groupId> <groupId>me.eugeniomarletti.kotlin.metadata</groupId>
<artifactId>kotlin-metadata</artifactId> <artifactId>kotlin-metadata</artifactId>
<version>${kotlin-metadata.version}</version> <version>${kotlin-metadata.version}</version>
</dependency> </dependency>