Skip to content

Commit

Permalink
upgraded maven plugins and dependencies (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
OpenPj committed Feb 10, 2023
1 parent 47467a4 commit 56b0e5b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 33 deletions.
13 changes: 9 additions & 4 deletions activiti-app-swagger-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
</parent>

<properties>
<swagger.v2.codegen.version>2.4.25</swagger.v2.codegen.version>
<swagger.v2.version>1.6.4</swagger.v2.version>
<swagger.v2.codegen.version>2.4.29</swagger.v2.codegen.version>
<swagger.v2.version>1.6.9</swagger.v2.version>
<javax-annotation-api.version>1.3.2</javax-annotation-api.version>
<gson.version>2.8.9</gson.version>
<build.helper.version>3.2.0</build.helper.version>
<gson.version>2.10.1</gson.version>
<build.helper.version>3.3.0</build.helper.version>
<okhttp.version>2.7.5</okhttp.version>
<gson.fire.version>1.8.5</gson.fire.version>
<threetenbp.version>1.5.2</threetenbp.version>
Expand All @@ -37,6 +37,11 @@
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.api.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
13 changes: 9 additions & 4 deletions aps-extensions-jar/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>aps-extensions-jar</artifactId>
<packaging>jar</packaging>
Expand Down Expand Up @@ -235,7 +237,7 @@
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
<!-- if you have special character issues, this is an option to play
<!-- if you have special character issues, this is an option to play
with. not required in most cases -->
<!-- <archiverConfig> <encoding>UTF-8</encoding> </archiverConfig> -->
</configuration>
Expand Down Expand Up @@ -279,8 +281,11 @@
<phase>generate-test-resources</phase>
<configuration>
<target>
<copy todir="${project.basedir}/src/test/resources/activiti" overwrite="true">
<file file="${project.basedir}/src/test/resources/activiti/${aps.version}/version.properties" />
<copy
todir="${project.basedir}/src/test/resources/activiti"
overwrite="true">
<file
file="${project.basedir}/src/test/resources/activiti/${aps.version}/version.properties" />
</copy>
</target>
</configuration>
Expand Down
28 changes: 3 additions & 25 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<artifactId>aps-project</artifactId>
<version>1.8.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Alfresco Process Services - SDK Project</name>
<name>Alfresco Process Services - 1.x - SDK Project</name>

<developers>
<developer>
Expand All @@ -28,7 +28,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
<maven-war-plugin.version>3.3.2</maven-war-plugin.version>
<docker-maven-plugin.version>0.41.0</docker-maven-plugin.version>
<maven-dependency-plugin.version>3.5.0</maven-dependency-plugin.version>
Expand All @@ -38,9 +38,8 @@
<maven-failsafe-plugin.version>3.0.0-M8</maven-failsafe-plugin.version>
<maven-antrun-plugin.version>3.1.0</maven-antrun-plugin.version>
<maven-eclipse-lifecycle-mapping.version>1.0.0</maven-eclipse-lifecycle-mapping.version>
<stax-ex.version>2.0.1</stax-ex.version>
<jaxb.api.version>2.3.0</jaxb.api.version>
<jaxb.runtime.version>2.3.2</jaxb.runtime.version>
<jaxb.runtime.version>2.3.0</jaxb.runtime.version>
<maven.enforcer.plugin.version>3.2.1</maven.enforcer.plugin.version>
<skip.integration.test>false</skip.integration.test>
<skip.swagger.client.generation>false</skip.swagger.client.generation>
Expand All @@ -49,27 +48,6 @@
<docker-maven-plugin.skip.save>false</docker-maven-plugin.skip.save>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jvnet.staxex</groupId>
<artifactId>stax-ex</artifactId>
<version>${stax-ex.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.api.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb.runtime.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</dependencyManagement>

<profiles>

<profile>
Expand Down

0 comments on commit 56b0e5b

Please sign in to comment.