Skip to content

Commit fd6227b

Browse files
smyrickbrennantaylor
authored andcommitted
build: update versions (#115)
1 parent 2a0a17a commit fd6227b

File tree

2 files changed

+32
-14
lines changed

2 files changed

+32
-14
lines changed

example/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,17 @@
5959
</developers>
6060

6161
<properties>
62+
<!-- Project versions -->
6263
<java.version>1.8</java.version>
6364
<kotlin.version>1.3.11</kotlin.version>
64-
<junit.version>4.12</junit.version>
65+
66+
<!-- Dependency Versions -->
6567
<graphiql.version>5.0.2</graphiql.version>
6668
<graphql-kotlin.version>0.0.29-SNAPSHOT</graphql-kotlin.version>
6769
<graphql-servlet.version>6.1.2</graphql-servlet.version>
70+
71+
<!-- Test Dependency Versions -->
72+
<junit.version>4.12</junit.version>
6873
</properties>
6974

7075
<build>
@@ -142,7 +147,7 @@
142147
</dependency>
143148
<dependency>
144149
<groupId>org.jetbrains.kotlin</groupId>
145-
<artifactId>kotlin-stdlib-jdk8</artifactId>
150+
<artifactId>kotlin-stdlib</artifactId>
146151
<version>${kotlin.version}</version>
147152
</dependency>
148153
<dependency>

pom.xml

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -72,23 +72,24 @@
7272
<properties>
7373
<!-- Project Versions -->
7474
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
75-
76-
<graphql-java.version>11.0</graphql-java.version>
77-
78-
<!-- kotlin -->
7975
<kotlin.version>1.3.11</kotlin.version>
80-
<kotlin-detekt.version>1.0.0-RC12</kotlin-detekt.version>
81-
<kotlin-ktlint.version>0.29.0</kotlin-ktlint.version>
8276

8377
<!-- Dependency Versions -->
8478
<reflections.version>0.9.11</reflections.version>
79+
<graphql-java.version>11.0</graphql-java.version>
80+
<jackson-module-kotlin.version>2.9.8</jackson-module-kotlin.version>
8581

8682
<!-- Test Dependency Versions -->
87-
<mockk.version>1.8.9.kotlin13</mockk.version>
88-
<junit-jupiter.version>5.3.1</junit-jupiter.version>
83+
<mockk.version>1.8.13.kotlin13</mockk.version>
84+
<junit-jupiter.version>5.3.2</junit-jupiter.version>
85+
<rxjava.version>2.2.4</rxjava.version>
8986

9087
<!-- Build Plugin Versions -->
9188
<surefire-plugin.version>2.22.1</surefire-plugin.version>
89+
<kotlin-detekt.version>1.0.0-RC12</kotlin-detekt.version>
90+
<kotlin-ktlint.version>0.29.0</kotlin-ktlint.version>
91+
<dokka-maven-plugin.version>0.9.17</dokka-maven-plugin.version>
92+
<jacoco-maven-plugin.version>0.8.2</jacoco-maven-plugin.version>
9293
</properties>
9394

9495
<pluginRepositories>
@@ -106,7 +107,7 @@
106107
<plugin>
107108
<groupId>org.jetbrains.dokka</groupId>
108109
<artifactId>dokka-maven-plugin</artifactId>
109-
<version>0.9.17</version>
110+
<version>${dokka-maven-plugin.version}</version>
110111
<executions>
111112
<execution>
112113
<phase>prepare-package</phase>
@@ -226,7 +227,7 @@
226227
<plugin>
227228
<groupId>org.jacoco</groupId>
228229
<artifactId>jacoco-maven-plugin</artifactId>
229-
<version>0.8.2</version>
230+
<version>${jacoco-maven-plugin.version}</version>
230231
<executions>
231232
<execution>
232233
<goals>
@@ -269,7 +270,13 @@
269270
<dependency>
270271
<groupId>com.fasterxml.jackson.module</groupId>
271272
<artifactId>jackson-module-kotlin</artifactId>
272-
<version>2.9.3</version>
273+
<version>${jackson-module-kotlin.version}</version>
274+
<exclusions>
275+
<exclusion>
276+
<groupId>org.jetbrains.kotlin</groupId>
277+
<artifactId>kotlin-reflect</artifactId>
278+
</exclusion>
279+
</exclusions>
273280
</dependency>
274281
<dependency>
275282
<groupId>org.jetbrains.kotlin</groupId>
@@ -282,11 +289,17 @@
282289
<artifactId>mockk</artifactId>
283290
<version>${mockk.version}</version>
284291
<scope>test</scope>
292+
<exclusions>
293+
<exclusion>
294+
<groupId>org.jetbrains.kotlin</groupId>
295+
<artifactId>kotlin-reflect</artifactId>
296+
</exclusion>
297+
</exclusions>
285298
</dependency>
286299
<dependency>
287300
<groupId>io.reactivex.rxjava2</groupId>
288301
<artifactId>rxjava</artifactId>
289-
<version>2.1.0</version>
302+
<version>${rxjava.version}</version>
290303
<scope>test</scope>
291304
</dependency>
292305
<dependency>

0 commit comments

Comments
 (0)