Skip to content

Commit fa22a8d

Browse files
panos-kakosdkapil
andauthored
[JAVA-36481] (#1010)
* [JAVA-36481] * [JAVA-36481] * [JAVA-36481] * [JAVA-36481] * [JAVA-36481] Reverted kotlin version --------- Co-authored-by: Dhawal Kapil <[email protected]>
1 parent 670198e commit fa22a8d

File tree

20 files changed

+62
-59
lines changed

20 files changed

+62
-59
lines changed

kotlin-apache-kafka/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
65
<artifactId>kotlin-apache-kafka</artifactId>
76
<version>1.0-SNAPSHOT</version>
87
<packaging>jar</packaging>

kotlin-libraries-2/pom.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,14 @@
131131
<extension>
132132
<groupId>kr.motd.maven</groupId>
133133
<artifactId>os-maven-plugin</artifactId>
134-
<version>1.7.0</version>
134+
<version>${os-maven-plugin.version}</version>
135135
</extension>
136136
</extensions>
137137
<plugins>
138138
<plugin>
139139
<groupId>org.xolstice.maven.plugins</groupId>
140140
<artifactId>protobuf-maven-plugin</artifactId>
141-
<version>0.6.1</version>
141+
<version>${protobuf-maven-plugin.version}</version>
142142
<executions>
143143
<execution>
144144
<id>compile</id>
@@ -258,7 +258,7 @@
258258
<plugin>
259259
<groupId>org.codehaus.mojo</groupId>
260260
<artifactId>exec-maven-plugin</artifactId>
261-
<version>3.0.0</version>
261+
<version>${exec-maven-plugin.version}</version>
262262
<executions>
263263
<execution>
264264
<goals>
@@ -309,6 +309,8 @@
309309
<moshi.version>1.14.0</moshi.version>
310310
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
311311
<dokka-maven-plugin.version>1.7.20</dokka-maven-plugin.version>
312+
<os-maven-plugin.version>1.7.0</os-maven-plugin.version>
313+
<protobuf-maven-plugin.version>0.6.1</protobuf-maven-plugin.version>
312314
</properties>
313315

314316
</project>

kotlin-libraries-3/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,9 @@
1919
<version>${kotlinpoet-jvm.version}</version>
2020
</dependency>
2121
</dependencies>
22-
<build>
23-
24-
</build>
2522

2623
<properties>
27-
2824
<kotlinpoet-jvm.version>1.16.0</kotlinpoet-jvm.version>
29-
3025
</properties>
3126

3227
</project>

kotlin-libraries-http/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
<artifactId>gson</artifactId>
5959
<version>${gson.version}</version>
6060
</dependency>
61-
6261
</dependencies>
6362

6463
<properties>

kotlin-math-2/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<version>1.0.0-SNAPSHOT</version>
88
<artifactId>kotlin-math-2</artifactId>
9+
910
<parent>
1011
<groupId>com.baeldung</groupId>
1112
<artifactId>kotlin-modules</artifactId>

kotlin-quasar/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
</plugin>
7777
<plugin>
7878
<artifactId>maven-dependency-plugin</artifactId>
79-
<version>${dependency.plugin.version}</version>
79+
<version>${maven-dependency-plugin.version}</version>
8080
<executions>
8181
<execution>
8282
<id>getClasspathFilenames</id>
@@ -89,7 +89,7 @@
8989
<plugin>
9090
<groupId>org.apache.maven.plugins</groupId>
9191
<artifactId>maven-surefire-plugin</artifactId>
92-
<version>${surefire.plugin.version}</version>
92+
<version>${maven-surefire-plugin.version}</version>
9393
<configuration>
9494
<argLine>-Dco.paralleluniverse.fibers.verifyInstrumentation=true</argLine>
9595
<argLine>-javaagent:${co.paralleluniverse:quasar-core:jar}</argLine>
@@ -98,7 +98,7 @@
9898
<plugin>
9999
<groupId>org.codehaus.mojo</groupId>
100100
<artifactId>exec-maven-plugin</artifactId>
101-
<version>${exec.plugin.version}</version>
101+
<version>${exec-maven-plugin.version}</version>
102102
<configuration>
103103
<workingDirectory>target/classes</workingDirectory>
104104
<executable>echo</executable>
@@ -117,9 +117,9 @@
117117
<quasar.version>0.8.0</quasar.version>
118118
<org.slf4j.version>1.7.21</org.slf4j.version>
119119
<logback.version>1.2.13</logback.version>
120-
<dependency.plugin.version>3.7.1</dependency.plugin.version>
121-
<surefire.plugin.version>2.22.1</surefire.plugin.version>
122-
<exec.plugin.version>1.3.2</exec.plugin.version>
120+
<maven-dependency-plugin.version>3.7.1</maven-dependency-plugin.version>
121+
<maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
122+
<exec-maven-plugin.version>1.3.2</exec-maven-plugin.version>
123123
</properties>
124124

125125
</project>

kotlin-reflection/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
65
<artifactId>kotlin-reflection</artifactId>
7-
<version>1.0.0-SNAPSHOT</version>
8-
96
<name>kotlin-reflection</name>
7+
<version>1.0.0-SNAPSHOT</version>
108
<packaging>jar</packaging>
119

1210
<parent>

kotlin-spark/pom.xml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,29 @@
1616
<dependency>
1717
<groupId>com.sparkjava</groupId>
1818
<artifactId>spark-kotlin</artifactId>
19-
<version>1.0.0-alpha</version>
19+
<version>${spark-kotlin.version}</version>
2020
</dependency>
2121
<dependency>
2222
<groupId>com.sparkjava</groupId>
2323
<artifactId>spark-core</artifactId>
24-
<version>2.9.4</version>
24+
<version>${spark-core.version}</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>com.fasterxml.jackson.module</groupId>
2828
<artifactId>jackson-module-kotlin</artifactId>
29-
<version>2.15.3</version>
29+
<version>${jackson.version}</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>com.fasterxml.jackson.datatype</groupId>
3333
<artifactId>jackson-datatype-jsr310</artifactId>
34-
<version>2.15.3</version>
34+
<version>${jackson.version}</version>
3535
</dependency>
3636
</dependencies>
3737

3838
<properties>
39+
<spark-kotlin.version>1.0.0-alpha</spark-kotlin.version>
40+
<spark-core.version>2.9.4</spark-core.version>
41+
<jackson.version>2.15.3</jackson.version>
3942
</properties>
4043

4144
</project>

kotlin-testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
<version>${atrium.version}</version>
4646
<scope>test</scope>
4747
</dependency>
48-
4948
<dependency>
5049
<groupId>net.jqwik</groupId>
5150
<artifactId>jqwik</artifactId>
@@ -91,4 +90,5 @@
9190
<jqwik.version>1.8.5</jqwik.version>
9291
<junit-jupiter-params.version>5.9.1</junit-jupiter-params.version>
9392
</properties>
93+
9494
</project>

kotlin-yaml/pom.xml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,15 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>kotlin-yaml</artifactId>
77
<name>kotlin-yaml</name>
8-
<packaging>jar</packaging>
98
<version>1.0.0-SNAPSHOT</version>
9+
<packaging>jar</packaging>
1010

1111
<parent>
1212
<groupId>com.baeldung</groupId>
1313
<artifactId>kotlin-modules</artifactId>
1414
<version>1.0.0-SNAPSHOT</version>
1515
</parent>
1616

17-
<properties>
18-
<kotlin.version>1.8.0</kotlin.version>
19-
<serialization.version>1.5.0</serialization.version>
20-
<serialization.jvm.version>1.5.0</serialization.jvm.version>
21-
</properties>
22-
2317
<dependencies>
2418
<dependency>
2519
<groupId>org.jetbrains.kotlin</groupId>
@@ -30,12 +24,12 @@
3024
<dependency>
3125
<groupId>com.charleskorn.kaml</groupId>
3226
<artifactId>kaml-jvm</artifactId>
33-
<version>0.58.0</version>
27+
<version>${kaml-jvm.version}</version>
3428
</dependency>
3529
<dependency>
3630
<groupId>net.mamoe.yamlkt</groupId>
3731
<artifactId>yamlkt-jvm</artifactId>
38-
<version>0.13.0</version>
32+
<version>${yamlkt-jvm.version}</version>
3933
</dependency>
4034
</dependencies>
4135

@@ -72,4 +66,13 @@
7266
</plugin>
7367
</plugins>
7468
</build>
69+
70+
<properties>
71+
<kotlin.version>1.8.0</kotlin.version>
72+
<serialization.version>1.5.0</serialization.version>
73+
<serialization.jvm.version>1.5.0</serialization.jvm.version>
74+
<kaml-jvm.version>0.58.0</kaml-jvm.version>
75+
<yamlkt-jvm.version>0.13.0</yamlkt-jvm.version>
76+
</properties>
77+
7578
</project>

0 commit comments

Comments
 (0)