Skip to content

Commit 4a2248c

Browse files
authored
Update dependencies for v1.12 release (#840)
1 parent d382afe commit 4a2248c

File tree

4 files changed

+28
-9
lines changed

4 files changed

+28
-9
lines changed

bolt-helidon/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111

1212
<properties>
13-
<helidon.version>2.3.2</helidon.version>
13+
<helidon.version>[2.3,2.4)</helidon.version>
1414
<!-- Helidon 2.x requires Java 11+ -->
1515
<maven.compiler.source>11</maven.compiler.source>
1616
<maven.compiler.target>11</maven.compiler.target>

bolt-http4k/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111

1212
<properties>
13-
<http4k.version>4.11.0.1</http4k.version>
13+
<http4k.version>4.12.0.1</http4k.version>
1414
</properties>
1515

1616
<artifactId>bolt-http4k</artifactId>

bolt-ktor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<kotlin.code.style>official</kotlin.code.style>
18-
<ktor.version>1.6.2</ktor.version>
18+
<ktor.version>[1.6.3,1.7.0)</ktor.version>
1919
</properties>
2020

2121
<pluginRepositories>

pom.xml

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,26 @@
4242
<maven.compiler.source>1.8</maven.compiler.source>
4343
<maven.compiler.target>1.8</maven.compiler.target>
4444
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
45-
<jetty-for-tests.version>9.2.27.v20190403</jetty-for-tests.version>
45+
46+
<!-- For these compile scope dependencies, we don't use ranges of versions -->
4647
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
4748
<okhttp.version>4.9.1</okhttp.version>
4849
<gson.version>2.8.8</gson.version>
50+
<kotlin.version>1.5.30</kotlin.version>
51+
<slf4j.version>1.7.32</slf4j.version>
4952
<lombok.version>1.18.20</lombok.version>
5053
<lombok-maven-plugin.version>1.18.16.0</lombok-maven-plugin.version>
5154
<delombok.output>target/generated-sources-for-javadocs</delombok.output>
52-
<kotlin.version>1.5.30</kotlin.version>
53-
<slf4j.version>1.7.32</slf4j.version>
54-
<aws.s3.version>1.12.55</aws.s3.version>
55+
56+
<!-- optional / testing-only dependencies -->
57+
<aws.s3.version>[1.12.62,1.13.0)</aws.s3.version>
5558
<junit.version>4.13.2</junit.version>
56-
<hamcrest.version>1.3</hamcrest.version>
5759
<logback.version>1.2.5</logback.version>
58-
<mockito-core.version>3.12.4</mockito-core.version>
60+
<hamcrest.version>[1.3,2.0)</hamcrest.version>
61+
<mockito-core.version>[3.12.4,3.13.0)</mockito-core.version>
62+
<jetty-for-tests.version>9.2.27.v20190403</jetty-for-tests.version>
63+
64+
<!-- Maven plugins: range versioning does not work -->
5965
<duplicate-finder-maven-plugin.version>1.3.0</duplicate-finder-maven-plugin.version>
6066
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
6167
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
@@ -71,6 +77,19 @@
7177
<dokka.version>1.4.32</dokka.version>
7278
</properties>
7379

80+
<repositories>
81+
<repository>
82+
<id>central</id>
83+
<url>https://repo1.maven.org/maven2</url>
84+
<releases>
85+
<enabled>true</enabled>
86+
</releases>
87+
<snapshots>
88+
<enabled>false</enabled>
89+
</snapshots>
90+
</repository>
91+
</repositories>
92+
7493
<licenses>
7594
<license>
7695
<name>The Apache Software License, Version 2.0</name>

0 commit comments

Comments
 (0)