Skip to content

Commit 551e504

Browse files
authored
chore: update vertx dep (GoogleCloudPlatform#7685)
1 parent ba7d323 commit 551e504

1 file changed

Lines changed: 20 additions & 13 deletions

File tree

  • appengine-java11/vertx-helloworld

appengine-java11/vertx-helloworld/pom.xml

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ See the License for the specific language governing permissions and
1515
limitations under the License.
1616
-->
1717
<project xmlns="http://maven.apache.org/POM/4.0.0"
18-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2020
<modelVersion>4.0.0</modelVersion>
2121
<groupId>com.google.appengine.vertxdemo</groupId>
2222
<artifactId>vertx-hello-j11</artifactId>
@@ -27,31 +27,36 @@ limitations under the License.
2727
Removing or replacing it should not affect the execution of the samples in anyway.
2828
-->
2929
<parent>
30-
<groupId>com.google.cloud.samples</groupId>
31-
<artifactId>shared-configuration</artifactId>
32-
<version>1.2.0</version>
30+
<groupId>com.google.cloud.samples</groupId>
31+
<artifactId>shared-configuration</artifactId>
32+
<version>1.2.0</version>
3333
</parent>
3434

3535
<properties>
3636
<maven.compiler.source>11</maven.compiler.source>
3737
<maven.compiler.target>11</maven.compiler.target>
3838
</properties>
3939

40+
<dependencyManagement>
41+
<dependencies>
42+
<dependency>
43+
<groupId>io.vertx</groupId>
44+
<artifactId>vertx-dependencies</artifactId>
45+
<version>4.3.8</version>
46+
<type>pom</type>
47+
<scope>import</scope>
48+
</dependency>
49+
</dependencies>
50+
</dependencyManagement>
51+
4052
<dependencies>
41-
<dependency>
42-
<groupId>io.vertx</groupId>
43-
<artifactId>vertx-core</artifactId>
44-
<version>4.3.0</version>
45-
</dependency>
4653
<dependency>
4754
<groupId>io.vertx</groupId>
4855
<artifactId>vertx-web</artifactId>
49-
<version>4.3.0</version>
5056
</dependency>
5157
<dependency>
5258
<groupId>io.vertx</groupId>
5359
<artifactId>vertx-web-client</artifactId>
54-
<version>4.3.0</version>
5560
</dependency>
5661

5762
<dependency>
@@ -64,11 +69,13 @@ limitations under the License.
6469
<groupId>junit</groupId>
6570
<artifactId>junit</artifactId>
6671
<version>4.13.2</version>
72+
<scope>test</scope>
6773
</dependency>
6874
<dependency>
6975
<groupId>io.vertx</groupId>
7076
<artifactId>vertx-unit</artifactId>
7177
<version>4.3.0</version>
78+
<scope>test</scope>
7279
</dependency>
7380
</dependencies>
7481
<build>
@@ -106,4 +113,4 @@ limitations under the License.
106113
</plugin>
107114
</plugins>
108115
</build>
109-
</project>
116+
</project>

0 commit comments

Comments
 (0)