Skip to content

Commit

Permalink
[MODINVOSTO-171] - Update RMB and vertx to the latest version (#161)
Browse files Browse the repository at this point in the history
* [MODINVOSTO-171] - Update RMB and vertx to the latest version

* [MODINVOSTO-171] - Update RMB and vertx to the latest version

* [MODINVOSTO-171] - updated junit jupiter version

* [MODINVOSTO-171] - updated testcontainser version
  • Loading branch information
azizbekxm authored Oct 26, 2023
1 parent e1070a3 commit 9740ef9
Showing 1 changed file with 38 additions and 34 deletions.
72 changes: 38 additions & 34 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,40 @@
<properties>
<!--Project properties-->
<java.version>17</java.version>
<spring.version>5.3.23</spring.version>
<spring.version>6.0.2</spring.version>
<ramlfiles_path>${basedir}/ramls</ramlfiles_path>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<generated_sources_dir>${project.build.directory}/generated-sources</generated_sources_dir>
<jsonschema2pojo_output_dir>${generated_sources_dir}/jsonschema2pojo</jsonschema2pojo_output_dir>
<postgres.image>postgres:12-alpine</postgres.image>

<!--Dependency Management Properties-->
<vertx.version>4.3.4</vertx.version>
<vertx.version>4.4.5</vertx.version>
<jackson-bom.version>2.13.4</jackson-bom.version>
<log4j.version>2.19.0</log4j.version>
<log4j.version>2.20.0</log4j.version>

<!--Dependency properties-->
<aspectj.version>1.9.19</aspectj.version>
<aspectj.version>1.9.20.1</aspectj.version>
<aspectj-maven-plugin.version>1.13.1</aspectj-maven-plugin.version>
<rest-assured.version>5.2.0</rest-assured.version>
<raml-module-builder.version>35.0.1</raml-module-builder.version>
<rest-assured.version>5.3.2</rest-assured.version>
<raml-module-builder.version>35.1.0</raml-module-builder.version>
<folio-di-support.version>2.0.1</folio-di-support.version>

<!--Maven plugin properties-->
<exec-maven-plugin.version>3.1.0</exec-maven-plugin.version>
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-antrun-plugin.version>3.1.0</maven-antrun-plugin.version>
<maven-shade-plugin.version>3.5.1</maven-shade-plugin.version>
<maven-release-plugin.version>3.0.1</maven-release-plugin.version>
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
<build-helper-maven-plugin.version>3.4.0</build-helper-maven-plugin.version>
<copy-rename-maven-plugin.version>1.0.1</copy-rename-maven-plugin.version>

<!--Test Scope dependencies-->
<junit-jupiter-version>5.9.0</junit-jupiter-version>
<junit-jupiter-version>5.10.0</junit-jupiter-version>
<jmockit.version>1.49</jmockit.version>
<testcontainers.version>1.17.4</testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>

<!--Sonar properties-->
<sonar.exclusions>**/models/**.java</sonar.exclusions>
Expand All @@ -54,13 +66,6 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-stack-depchain</artifactId>
<version>${vertx.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
Expand All @@ -82,6 +87,13 @@
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-stack-depchain</artifactId>
<version>${vertx.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand All @@ -99,7 +111,7 @@
<dependency>
<groupId>org.folio</groupId>
<artifactId>folio-di-support</artifactId>
<version>1.6.0</version>
<version>${folio-di-support.version}</version>
<type>jar</type>
</dependency>
<dependency>
Expand Down Expand Up @@ -193,7 +205,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<release>${java.version}</release>
<encoding>UTF-8</encoding>
Expand Down Expand Up @@ -253,7 +265,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<argLine>
@{argLine} -javaagent:${settings.localRepository}/org/jmockit/jmockit/${jmockit.version}/jmockit-${jmockit.version}.jar
Expand All @@ -266,18 +278,13 @@
<include>org/folio/rest/impl/StorageTestSuite.java</include>
<include>org/folio/rest/**</include>
</includes>
<!-- TODO: update to version 3.0.0 and remove useSystemClassLoader
https://issues.folio.org/browse/FOLIO-1609
https://issues.apache.org/jira/browse/SUREFIRE-1588
-->
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.2.0</version>
<version>${build-helper-maven-plugin.version}</version>
<executions>
<execution>
<id>add_generated_sources_folder</id>
Expand Down Expand Up @@ -310,7 +317,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.0.0</version>
<version>${exec-maven-plugin.version}</version>
<executions>
<execution>
<id>git submodule update</id>
Expand Down Expand Up @@ -372,7 +379,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.2.0</version>
<version>${maven-resources-plugin.version}</version>
<executions>
<execution>
<id>copy-resources</id>
Expand Down Expand Up @@ -413,7 +420,7 @@
<plugin>
<groupId>com.coderplus.maven.plugins</groupId>
<artifactId>copy-rename-maven-plugin</artifactId>
<version>1.0.1</version>
<version>${copy-rename-maven-plugin.version}</version>
<executions>
<execution>
<id>rename-descriptor-outputs</id>
Expand All @@ -440,7 +447,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.0.0</version>
<version>${maven-antrun-plugin.version}</version>
<executions>
<execution>
<!-- Replace the baseUri in the RAMLs that have been copied to
Expand All @@ -463,7 +470,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>${maven-shade-plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -497,25 +504,22 @@
</filters>
<artifactSet />
<outputFile>${project.build.directory}/${project.artifactId}-fat.jar</outputFile>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<version>${maven-release-plugin.version}</version>
<configuration>
<preparationGoals>clean verify</preparationGoals>
<tagNameFormat>v@{project.version}</tagNameFormat>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
</configuration>
</plugin>



</plugins>
</build>

Expand Down

0 comments on commit 9740ef9

Please sign in to comment.