Skip to content

Commit 01d31bb

Browse files
committed
chore: update dependencies
1 parent a60ead9 commit 01d31bb

File tree

10 files changed

+79
-18
lines changed

10 files changed

+79
-18
lines changed

client-kotlin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179
<dependency>
180180
<groupId>org.jetbrains.kotlinx</groupId>
181181
<artifactId>kotlinx-coroutines-core-jvm</artifactId>
182-
<version>1.4.3</version>
182+
<version>1.6.0</version>
183183
<exclusions>
184184
<exclusion>
185185
<groupId>org.jetbrains.kotlin</groupId>

client-osgi/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,14 +144,14 @@
144144
<dependency>
145145
<groupId>org.projectlombok</groupId>
146146
<artifactId>lombok</artifactId>
147-
<version>1.18.20</version>
147+
<version>1.18.22</version>
148148
<scope>provided</scope>
149149
</dependency>
150150

151151
<dependency>
152152
<groupId>org.slf4j</groupId>
153153
<artifactId>slf4j-api</artifactId>
154-
<version>1.7.32</version>
154+
<version>1.7.33</version>
155155
<scope>provided</scope>
156156
</dependency>
157157

client-scala/cross/2.12/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@
7272
</scm>
7373

7474
<properties>
75-
<scala.version>2.12.13</scala.version>
76-
<akka.version>2.6.6</akka.version>
75+
<scala.version>2.12.15</scala.version>
76+
<akka.version>2.6.18</akka.version>
7777
</properties>
7878

7979
<build>
@@ -164,7 +164,7 @@
164164
<dependency>
165165
<groupId>org.scala-lang.modules</groupId>
166166
<artifactId>scala-collection-compat_2.12</artifactId>
167-
<version>2.4.2</version>
167+
<version>2.6.0</version>
168168
<exclusions>
169169
<exclusion>
170170
<groupId>org.scala-lang</groupId>
@@ -220,7 +220,7 @@
220220
<dependency>
221221
<groupId>org.scalatest</groupId>
222222
<artifactId>scalatest_2.12</artifactId>
223-
<version>3.2.0</version>
223+
<version>3.2.11</version>
224224
<scope>test</scope>
225225
<exclusions>
226226
<exclusion>

client-scala/cross/2.13/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@
7373

7474
<properties>
7575
<scoverage-maven-plugin.version>1.4.1</scoverage-maven-plugin.version>
76-
<scala.version>2.13.5</scala.version>
77-
<akka.version>2.6.6</akka.version>
76+
<scala.version>2.13.8</scala.version>
77+
<akka.version>2.6.18</akka.version>
7878
</properties>
7979

8080
<build>
@@ -250,7 +250,7 @@
250250
<dependency>
251251
<groupId>org.scalatest</groupId>
252252
<artifactId>scalatest_2.13</artifactId>
253-
<version>3.2.0</version>
253+
<version>3.2.11</version>
254254
<scope>test</scope>
255255
<exclusions>
256256
<exclusion>

karaf/karaf-assembly/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,20 @@
7878
</execution>
7979
</executions>
8080
</plugin>
81+
<plugin>
82+
<groupId>com.mycila</groupId>
83+
<artifactId>license-maven-plugin</artifactId>
84+
<configuration>
85+
<header>../../scripts/license_header.txt</header>
86+
</configuration>
87+
</plugin>
88+
<plugin>
89+
<groupId>org.codehaus.mojo</groupId>
90+
<artifactId>versions-maven-plugin</artifactId>
91+
<configuration>
92+
<rulesUri>file://${project.basedir}/../../scripts/maven-version-rules.xml</rulesUri>
93+
</configuration>
94+
</plugin>
8195
</plugins>
8296
</build>
8397

karaf/karaf-features/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,20 @@
7474
</execution>
7575
</executions>
7676
</plugin>
77+
<plugin>
78+
<groupId>com.mycila</groupId>
79+
<artifactId>license-maven-plugin</artifactId>
80+
<configuration>
81+
<header>../../scripts/license_header.txt</header>
82+
</configuration>
83+
</plugin>
84+
<plugin>
85+
<groupId>org.codehaus.mojo</groupId>
86+
<artifactId>versions-maven-plugin</artifactId>
87+
<configuration>
88+
<rulesUri>file://${project.basedir}/../../scripts/maven-version-rules.xml</rulesUri>
89+
</configuration>
90+
</plugin>
7791
</plugins>
7892
</build>
7993
</project>

karaf/karaf-kar/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,20 @@
5454
<aggregateFeatures>true</aggregateFeatures>
5555
</configuration>
5656
</plugin>
57+
<plugin>
58+
<groupId>com.mycila</groupId>
59+
<artifactId>license-maven-plugin</artifactId>
60+
<configuration>
61+
<header>../../scripts/license_header.txt</header>
62+
</configuration>
63+
</plugin>
64+
<plugin>
65+
<groupId>org.codehaus.mojo</groupId>
66+
<artifactId>versions-maven-plugin</artifactId>
67+
<configuration>
68+
<rulesUri>file://${project.basedir}/../../scripts/maven-version-rules.xml</rulesUri>
69+
</configuration>
70+
</plugin>
5771
</plugins>
5872
</build>
5973

karaf/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,25 @@
7070
<tag>HEAD</tag>
7171
</scm>
7272

73+
<build>
74+
<plugins>
75+
<plugin>
76+
<groupId>com.mycila</groupId>
77+
<artifactId>license-maven-plugin</artifactId>
78+
<configuration>
79+
<header>../scripts/license_header.txt</header>
80+
</configuration>
81+
</plugin>
82+
<plugin>
83+
<groupId>org.codehaus.mojo</groupId>
84+
<artifactId>versions-maven-plugin</artifactId>
85+
<configuration>
86+
<rulesUri>file://${project.basedir}/../scripts/maven-version-rules.xml</rulesUri>
87+
</configuration>
88+
</plugin>
89+
</plugins>
90+
</build>
91+
7392
<dependencies>
7493
<dependency>
7594
<groupId>org.apache.karaf.features</groupId>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123

124124
<kotlin.version>1.6.10</kotlin.version>
125125
<karaf.version>4.2.11</karaf.version>
126-
<junit-jupiter.version>5.7.2</junit-jupiter.version>
126+
<junit-jupiter.version>5.8.2</junit-jupiter.version>
127127
</properties>
128128

129129
<dependencies>
@@ -602,7 +602,7 @@
602602
<dependency>
603603
<groupId>org.junit.platform</groupId>
604604
<artifactId>junit-platform-runner</artifactId>
605-
<version>1.7.2</version>
605+
<version>1.8.2</version>
606606
</dependency>
607607

608608
<dependency>
@@ -614,13 +614,13 @@
614614
<dependency>
615615
<groupId>org.mockito</groupId>
616616
<artifactId>mockito-core</artifactId>
617-
<version>3.12.4</version>
617+
<version>4.3.1</version>
618618
</dependency>
619619

620620
<dependency>
621621
<groupId>org.mockito</groupId>
622622
<artifactId>mockito-junit-jupiter</artifactId>
623-
<version>3.11.2</version>
623+
<version>4.3.1</version>
624624
</dependency>
625625

626626
<dependency>

spring/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@
7272
</scm>
7373

7474
<properties>
75-
<micrometer.version>1.7.0</micrometer.version>
76-
<spring-boot.version>2.4.6</spring-boot.version>
77-
<spring.version>5.3.7</spring.version>
78-
<mockito.version>2.25.1</mockito.version>
75+
<micrometer.version>1.8.2</micrometer.version>
76+
<spring-boot.version>2.6.3</spring-boot.version>
77+
<spring.version>5.3.15</spring.version>
78+
<mockito.version>4.3.1</mockito.version>
7979
</properties>
8080

8181
<build>

0 commit comments

Comments
 (0)