Skip to content

Commit

Permalink
Upgrade Vert.x from 4.3.8 to 4.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
julianladisch committed Oct 15, 2023
1 parent b282bd5 commit 9918807
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
3 changes: 3 additions & 0 deletions hello-vertx/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Only the fat jar file is needed for the Docker container
*
!target/*-fat.jar
11 changes: 6 additions & 5 deletions hello-vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-stack-depchain</artifactId>
<version>4.3.8</version>
<version>4.4.6</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -52,7 +52,7 @@
<dependency>
<groupId>org.folio.okapi</groupId>
<artifactId>okapi-common</artifactId>
<version>5.0.0</version>
<version>5.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -68,7 +68,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.0</version>
<configuration>
<release>17</release>
<compilerArgument>-Xlint:unchecked</compilerArgument>
Expand All @@ -77,7 +77,7 @@
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<executions>
<execution>
<id>filter-descriptor-inputs</id>
Expand Down Expand Up @@ -135,7 +135,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -153,6 +153,7 @@
</transformer>
</transformers>
<artifactSet/>
<createDependencyReducedPom>false</createDependencyReducedPom>
<outputFile>${project.build.directory}/${project.artifactId}-fat.jar</outputFile>
<filters>
<filter>
Expand Down
3 changes: 3 additions & 0 deletions simple-vertx/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Only the fat jar file is needed for the Docker container
*
!target/*-fat.jar
11 changes: 6 additions & 5 deletions simple-vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-stack-depchain</artifactId>
<version>4.3.8</version>
<version>4.4.6</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -57,7 +57,7 @@
<dependency>
<groupId>org.folio.okapi</groupId>
<artifactId>okapi-common</artifactId>
<version>5.0.0</version>
<version>5.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -73,7 +73,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.0</version>
<configuration>
<release>17</release>
<compilerArgument>-Xlint:unchecked</compilerArgument>
Expand All @@ -82,7 +82,7 @@
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<executions>
<execution>
<id>filter-descriptor-inputs</id>
Expand Down Expand Up @@ -136,7 +136,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -154,6 +154,7 @@
</transformer>
</transformers>
<artifactSet/>
<createDependencyReducedPom>false</createDependencyReducedPom>
<outputFile>${project.build.directory}/${project.artifactId}-fat.jar</outputFile>
<filters>
<filter>
Expand Down

0 comments on commit 9918807

Please sign in to comment.