v1.1.0 pom
This commit is contained in:
561
pom.xml
561
pom.xml
@@ -5,7 +5,7 @@
|
||||
|
||||
<groupId>com.inteligr8.activiti</groupId>
|
||||
<artifactId>cxf-activiti-ext</artifactId>
|
||||
<version>1.0.1</version>
|
||||
<version>1.1.0</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>CXF-based JAX-RS & JAX-WS enablement for APS/Activiti</name>
|
||||
@@ -16,30 +16,118 @@
|
||||
<maven.compiler.target>11</maven.compiler.target>
|
||||
|
||||
<aps.cxf.version>${cxf.version}</aps.cxf.version>
|
||||
|
||||
<!-- Never include any of the incarnation of the jaxws-api -->
|
||||
<aps.jaxws-api.version>2.1</aps.jaxws-api.version>
|
||||
<aps.jakarta.xml.ws-api.version>2.3.3</aps.jakarta.xml.ws-api.version>
|
||||
|
||||
<!-- Never include any of the incarnation of the annotation-api -->
|
||||
<aps.annotation-api.version>1.2</aps.annotation-api.version>
|
||||
<aps.jakarta.annotation-api.version>1.3.5</aps.jakarta.annotation-api.version>
|
||||
|
||||
<!-- Never include any of the incarnation of the activation-api -->
|
||||
<aps.activation-api.version>1.1</aps.activation-api.version>
|
||||
<aps.sun.activation-api.version>1.2.0</aps.sun.activation-api.version>
|
||||
<aps.jakarta.activation-api.version>1.2.1</aps.jakarta.activation-api.version>
|
||||
|
||||
<!-- Never include any of the incarnation of the jaxb-api -->
|
||||
<aps.jaxb-api.version>2.1</aps.jaxb-api.version>
|
||||
<aps.jakarta.xml.bind.version>2.3.2</aps.jakarta.xml.bind.version>
|
||||
|
||||
<aps.joda-time.version>2.9.9</aps.joda-time.version>
|
||||
<aps.stax2.version>3.1.1</aps.stax2.version>
|
||||
<aps.woodstox-core-asl.version>4.2.0</aps.woodstox-core-asl.version>
|
||||
<aps.xmlschema-core.version>2.2.2</aps.xmlschema-core.version>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- APS provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.bind</groupId>
|
||||
<artifactId>jaxb-impl</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- All APS versions v1.11.0 and later have some incarnation of the jaxws-api library; exclude all -->
|
||||
<dependency>
|
||||
<groupId>javax.xml.ws</groupId>
|
||||
<artifactId>jaxws-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.ws</groupId>
|
||||
<artifactId>jakarta.xml.ws-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- All APS versions v1.11.0 and later have some incarnation of the activation library; exclude all -->
|
||||
<dependency>
|
||||
<groupId>javax.annotation</groupId>
|
||||
<artifactId>javax.annotation-api</artifactId>
|
||||
<scope>provided</scope> <!-- v1.11.3 and earlier; exclude in v1.11.4 and later for conflict with jakarta-annotation-api -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.annotation</groupId>
|
||||
<artifactId>jakarta.annotation-api</artifactId>
|
||||
<scope>provided</scope> <!-- v1.11.4 and later; exclude in v1.11.3 and earlier for conflict with annotation-api -->
|
||||
</dependency>
|
||||
|
||||
<!-- All APS versions v1.11.0 and later have some incarnation of the activation library; exclude all -->
|
||||
<dependency>
|
||||
<groupId>javax.activation</groupId>
|
||||
<artifactId>activation</artifactId>
|
||||
<scope>provided</scope> <!-- v1.11.0 and earlier; exclude in v1.11.1 and later for conflict with jakarta-activation-api -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.activation</groupId>
|
||||
<artifactId>javax.activation</artifactId>
|
||||
<scope>provided</scope> <!-- v1.11.3 and later; exclude in v1.11.2 and earlier for conflict with activation -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.activation</groupId>
|
||||
<artifactId>jakarta.activation-api</artifactId>
|
||||
<scope>provided</scope> <!-- v1.11.1 and later; exclude in v1.11.2 and earlier for conflict with activation -->
|
||||
</dependency>
|
||||
|
||||
<!-- All APS versions v1.11.0 and later have some incarnation of the jaxb-api library; exclude all -->
|
||||
<dependency>
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
<scope>provided</scope> <!-- v1.11.0 and earlier; exclude in v1.11.1 and alter for conflict with jakarta.xml.bind-api -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.bind</groupId>
|
||||
<artifactId>jakarta.xml.bind-api</artifactId>
|
||||
<scope>provided</scope> <!-- v1.11.3 and later; exclude in v1.11.2 and earlier for conflict with jaxb-api -->
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-core</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||
<artifactId>jackson-dataformat-yaml</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>joda-time</groupId>
|
||||
<artifactId>joda-time</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.woodstox</groupId>
|
||||
<artifactId>stax2-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.woodstox</groupId>
|
||||
<artifactId>woodstox-core-asl</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ws.xmlschema</groupId>
|
||||
<artifactId>xmlschema-core</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
@@ -61,145 +149,11 @@
|
||||
<artifactId>jackson-datatype-joda</artifactId>
|
||||
<version>${aps.jackson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- APS provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
<version>${aps.spring.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.bind</groupId>
|
||||
<artifactId>jaxb-impl</artifactId>
|
||||
<version>${aps.jaxb-impl.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- All APS versions v1.11.0 and later have some incarnation of the jaxws-api library; exclude all -->
|
||||
<dependency>
|
||||
<groupId>javax.xml.ws</groupId>
|
||||
<artifactId>jaxws-api</artifactId>
|
||||
<version>${aps.jaxws-api.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.ws</groupId>
|
||||
<artifactId>jakarta.xml.ws-api</artifactId>
|
||||
<version>${aps.jakarta.xml.ws-api.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- All APS versions v1.11.0 and later have some incarnation of the activation library; exclude all -->
|
||||
<dependency>
|
||||
<groupId>javax.annotation</groupId>
|
||||
<artifactId>javax.annotation-api</artifactId>
|
||||
<version>${aps.annotation-api.version}</version>
|
||||
<scope>provided</scope> <!-- v1.11.3 and earlier; exclude in v1.11.4 and later for conflict with jakarta-annotation-api -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.annotation</groupId>
|
||||
<artifactId>jakarta.annotation-api</artifactId>
|
||||
<version>${aps.jakarta.annotation-api.version}</version>
|
||||
<scope>provided</scope> <!-- v1.11.4 and later; exclude in v1.11.3 and earlier for conflict with annotation-api -->
|
||||
</dependency>
|
||||
|
||||
<!-- All APS versions v1.11.0 and later have some incarnation of the activation library; exclude all -->
|
||||
<dependency>
|
||||
<groupId>javax.activation</groupId>
|
||||
<artifactId>activation</artifactId>
|
||||
<version>${aps.activation-api.version}</version>
|
||||
<scope>provided</scope> <!-- v1.11.0 and earlier; exclude in v1.11.1 and later for conflict with jakarta-activation-api -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.activation</groupId>
|
||||
<artifactId>javax.activation</artifactId>
|
||||
<version>${aps.sun.activation-api.version}</version>
|
||||
<scope>provided</scope> <!-- v1.11.3 and later; exclude in v1.11.2 and earlier for conflict with activation -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.activation</groupId>
|
||||
<artifactId>jakarta.activation-api</artifactId>
|
||||
<version>${aps.jakarta.activation-api.version}</version>
|
||||
<scope>provided</scope> <!-- v1.11.1 and later; exclude in v1.11.2 and earlier for conflict with activation -->
|
||||
</dependency>
|
||||
|
||||
<!-- All APS versions v1.11.0 and later have some incarnation of the jaxb-api library; exclude all -->
|
||||
<dependency>
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
<version>${aps.jaxb-api.version}</version>
|
||||
<scope>provided</scope> <!-- v1.11.0 and earlier; exclude in v1.11.1 and alter for conflict with jakarta.xml.bind-api -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.bind</groupId>
|
||||
<artifactId>jakarta.xml.bind-api</artifactId>
|
||||
<version>${aps.jakarta.xml.bind.version}</version>
|
||||
<scope>provided</scope> <!-- v1.11.3 and later; exclude in v1.11.2 and earlier for conflict with jaxb-api -->
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-core</artifactId>
|
||||
<version>${aps.jackson.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<version>${aps.jackson.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>${aps.jackson.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||
<artifactId>jackson-dataformat-yaml</artifactId>
|
||||
<version>${aps.jackson.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>joda-time</groupId>
|
||||
<artifactId>joda-time</artifactId>
|
||||
<version>${aps.joda-time.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.woodstox</groupId>
|
||||
<artifactId>stax2-api</artifactId>
|
||||
<version>${aps.stax2.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.woodstox</groupId>
|
||||
<artifactId>woodstox-core-asl</artifactId>
|
||||
<version>${aps.woodstox-core-asl.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ws.xmlschema</groupId>
|
||||
<artifactId>xmlschema-core</artifactId>
|
||||
<version>${aps.xmlschema-core.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- APS version overrides -->
|
||||
<!--
|
||||
<dependency>
|
||||
<groupId>io.swagger</groupId>
|
||||
<artifactId>swagger-jaxrs</artifactId>
|
||||
<version>1.5.10</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>javax.ws.rs</groupId>
|
||||
<artifactId>jsr311-api</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
-->
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
@@ -377,9 +331,7 @@
|
||||
|
||||
<!-- APS provided versions -->
|
||||
<aps.spring.version>4.3.24.RELEASE</aps.spring.version>
|
||||
<aps.jackson.version>2.10.1</aps.jackson.version>
|
||||
<aps.jaxb-impl.version>2.1.11</aps.jaxb-impl.version>
|
||||
<aps.jaxb-core.version>2.1.14</aps.jaxb-core.version> <!-- there is no v2.1.11 -->
|
||||
<aps.jackson.version>2.9.10</aps.jackson.version>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<!-- APS v1.11.2 and later provide this library -->
|
||||
@@ -414,9 +366,7 @@
|
||||
|
||||
<!-- APS provided versions -->
|
||||
<aps.spring.version>4.3.24.RELEASE</aps.spring.version>
|
||||
<aps.jackson.version>2.10.1</aps.jackson.version>
|
||||
<aps.jaxb-impl.version>2.1.11</aps.jaxb-impl.version>
|
||||
<aps.jaxb-core.version>2.1.14</aps.jaxb-core.version> <!-- there is no v2.1.11 -->
|
||||
<aps.jackson.version>2.9.10</aps.jackson.version>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<!-- APS v1.11.2 and later provide this library -->
|
||||
@@ -441,32 +391,28 @@
|
||||
<!-- APS provided versions -->
|
||||
<aps.cxf.version>3.1.14</aps.cxf.version>
|
||||
<aps.spring.version>4.3.29.RELEASE</aps.spring.version>
|
||||
<aps.jackson.version>2.11.3</aps.jackson.version> <!-- of note, cxf v3.1.14 uses jackson 2.10.1 -->
|
||||
<aps.annotation-api.version>1.3.2</aps.annotation-api.version>
|
||||
<aps.jaxws-api.version>2.3.1</aps.jaxws-api.version>
|
||||
<aps.jaxb-impl.version>2.3.0</aps.jaxb-impl.version>
|
||||
<aps.jackson.version>2.9.10</aps.jackson.version> <!-- of note, cxf v3.1.14 uses jackson 2.10.1 -->
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- APS provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-transports-http</artifactId>
|
||||
<version>${aps.cxf.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-core</artifactId>
|
||||
<version>${aps.cxf.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.bind</groupId>
|
||||
<artifactId>jaxb-core</artifactId>
|
||||
<version>${aps.jaxb-impl.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>aps-v1.11.3</id>
|
||||
@@ -476,32 +422,19 @@
|
||||
<!-- APS provided versions -->
|
||||
<aps.cxf.version>3.3.8</aps.cxf.version>
|
||||
<aps.spring.version>4.3.30.RELEASE</aps.spring.version>
|
||||
<aps.jackson.version>2.12.3</aps.jackson.version>
|
||||
<aps.annotation-api.version>1.3.2</aps.annotation-api.version>
|
||||
<aps.jaxws-api.version>2.3.1</aps.jaxws-api.version>
|
||||
<aps.jaxb-impl.version>2.3.0</aps.jaxb-impl.version>
|
||||
|
||||
<!-- APS v1.11.3 and later provided versions -->
|
||||
<aps.geronimo-jta.version>1.1.1</aps.geronimo-jta.version>
|
||||
<aps.geronimo-ws-metadata.version>1.1.3</aps.geronimo-ws-metadata.version>
|
||||
<aps.saaj-impl.version>1.4.0-b03</aps.saaj-impl.version>
|
||||
<aps.jacorb.version>3.9</aps.jacorb.version>
|
||||
<aps.jboss-rmi-api.version>1.0.6.Final</aps.jboss-rmi-api.version>
|
||||
<aps.stax2.version>3.1.4</aps.stax2.version>
|
||||
<aps.woodstox.version>5.0.3</aps.woodstox.version>
|
||||
<aps.jackson.version>2.9.10</aps.jackson.version> <!-- of note, cxf v3.1.14 uses jackson 2.10.1 -->
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- APS provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-transports-http</artifactId>
|
||||
<version>${aps.cxf.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-core</artifactId>
|
||||
<version>${aps.cxf.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -509,40 +442,35 @@
|
||||
<dependency>
|
||||
<groupId>org.jacorb</groupId>
|
||||
<artifactId>jacorb-omgapi</artifactId>
|
||||
<version>${aps.jacorb.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jboss.spec.javax.rmi</groupId>
|
||||
<artifactId>jboss-rmi-api_1.0_spec</artifactId>
|
||||
<version>${aps.jboss-rmi-api.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.woodstox</groupId>
|
||||
<artifactId>woodstox-core</artifactId>
|
||||
<version>${aps.woodstox.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
||||
<version>${aps.geronimo-jta.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-ws-metadata_2.0_spec</artifactId>
|
||||
<version>${aps.geronimo-ws-metadata.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.messaging.saaj</groupId>
|
||||
<artifactId>saaj-impl</artifactId>
|
||||
<version>${aps.saaj-impl.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>aps-v1.11.4</id>
|
||||
@@ -556,31 +484,18 @@
|
||||
<aps.cxf.version>3.3.8</aps.cxf.version>
|
||||
<aps.spring.version>4.3.30.RELEASE</aps.spring.version>
|
||||
<aps.jackson.version>2.12.3</aps.jackson.version>
|
||||
<aps.annotation-api.version>1.3.2</aps.annotation-api.version>
|
||||
<aps.jaxws-api.version>2.3.1</aps.jaxws-api.version>
|
||||
<aps.jaxb-impl.version>2.3.0</aps.jaxb-impl.version>
|
||||
|
||||
<!-- APS v1.11.3 and later provided versions -->
|
||||
<aps.geronimo-jta.version>1.1.1</aps.geronimo-jta.version>
|
||||
<aps.geronimo-ws-metadata.version>1.1.3</aps.geronimo-ws-metadata.version>
|
||||
<aps.saaj-impl.version>1.4.0-b03</aps.saaj-impl.version>
|
||||
<aps.jacorb.version>3.9</aps.jacorb.version>
|
||||
<aps.jboss-rmi-api.version>1.0.6.Final</aps.jboss-rmi-api.version>
|
||||
<aps.stax2.version>3.1.4</aps.stax2.version>
|
||||
<aps.woodstox.version>5.0.3</aps.woodstox.version>
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- APS provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-transports-http</artifactId>
|
||||
<version>${aps.cxf.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-core</artifactId>
|
||||
<version>${aps.cxf.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -588,13 +503,11 @@
|
||||
<dependency>
|
||||
<groupId>org.jacorb</groupId>
|
||||
<artifactId>jacorb-omgapi</artifactId>
|
||||
<version>${aps.jacorb.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-ws-metadata_2.0_spec</artifactId>
|
||||
<version>${aps.geronimo-ws-metadata.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -602,62 +515,47 @@
|
||||
<dependency>
|
||||
<groupId>org.jboss.spec.javax.rmi</groupId>
|
||||
<artifactId>jboss-rmi-api_1.0_spec</artifactId>
|
||||
<version>${aps.jboss-rmi-api.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.woodstox</groupId>
|
||||
<artifactId>woodstox-core</artifactId>
|
||||
<version>${aps.woodstox.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
||||
<version>${aps.geronimo-jta.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.messaging.saaj</groupId>
|
||||
<artifactId>saaj-impl</artifactId>
|
||||
<version>${aps.saaj-impl.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>aps-v2.0</id>
|
||||
<properties>
|
||||
<aps.app.tag>aps-v2.0</aps.app.tag>
|
||||
<aps.app.tag>aps20</aps.app.tag>
|
||||
|
||||
<!-- APS provided versions -->
|
||||
<aps.cxf.version>3.4.4</aps.cxf.version>
|
||||
<aps.spring.version>5.3.8</aps.spring.version>
|
||||
<aps.jackson.version>2.12.3</aps.jackson.version>
|
||||
<aps.annotation-api.version>1.3.2</aps.annotation-api.version>
|
||||
<aps.jakarta.activation-api.version>1.2.2</aps.jakarta.activation-api.version>
|
||||
<aps.jaxws-api.version>2.3.1</aps.jaxws-api.version>
|
||||
<aps.jaxb-impl.version>2.3.0</aps.jaxb-impl.version>
|
||||
|
||||
<!-- APS v1.11.3 and later provided versions -->
|
||||
<aps.geronimo-jta.version>1.1.1</aps.geronimo-jta.version>
|
||||
<aps.saaj-impl.version>1.5.3</aps.saaj-impl.version>
|
||||
<aps.jboss-rmi-api.version>1.0.6.Final</aps.jboss-rmi-api.version>
|
||||
<aps.stax2.version>3.1.4</aps.stax2.version>
|
||||
<aps.woodstox.version>6.2.6</aps.woodstox.version>
|
||||
<aps.spring.version>5.3.9</aps.spring.version>
|
||||
<aps.jackson.version>2.12.4</aps.jackson.version>
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- APS provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-transports-http</artifactId>
|
||||
<version>${aps.cxf.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-core</artifactId>
|
||||
<version>${aps.cxf.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -665,28 +563,229 @@
|
||||
<dependency>
|
||||
<groupId>org.jboss.spec.javax.rmi</groupId>
|
||||
<artifactId>jboss-rmi-api_1.0_spec</artifactId>
|
||||
<version>${aps.jboss-rmi-api.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.woodstox</groupId>
|
||||
<artifactId>woodstox-core</artifactId>
|
||||
<version>${aps.woodstox.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
||||
<version>${aps.geronimo-jta.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.messaging.saaj</groupId>
|
||||
<artifactId>saaj-impl</artifactId>
|
||||
<version>${aps.saaj-impl.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.jws</groupId>
|
||||
<artifactId>jakarta.jws-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.soap</groupId>
|
||||
<artifactId>jakarta.xml.soap-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.activation</groupId>
|
||||
<artifactId>jakarta.activation</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>aps-v2.1</id>
|
||||
<properties>
|
||||
<aps.app.tag>aps21</aps.app.tag>
|
||||
|
||||
<!-- APS provided versions -->
|
||||
<aps.cxf.version>3.4.4</aps.cxf.version>
|
||||
<aps.spring.version>5.3.13</aps.spring.version>
|
||||
<aps.jackson.version>2.12.4</aps.jackson.version>
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- APS provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-transports-http</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-core</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- APS v1.11.3 and later provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.jboss.spec.javax.rmi</groupId>
|
||||
<artifactId>jboss-rmi-api_1.0_spec</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.woodstox</groupId>
|
||||
<artifactId>woodstox-core</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.messaging.saaj</groupId>
|
||||
<artifactId>saaj-impl</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.jws</groupId>
|
||||
<artifactId>jakarta.jws-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.soap</groupId>
|
||||
<artifactId>jakarta.xml.soap-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.activation</groupId>
|
||||
<artifactId>jakarta.activation</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>aps-v2.2</id>
|
||||
<properties>
|
||||
<aps.app.tag>aps22</aps.app.tag>
|
||||
|
||||
<!-- APS provided versions -->
|
||||
<aps.cxf.version>3.5.0</aps.cxf.version>
|
||||
<aps.spring.version>5.3.15</aps.spring.version>
|
||||
<aps.jackson.version>2.13.1</aps.jackson.version>
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- APS provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-transports-http</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-core</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- APS v1.11.3 and later provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.jboss.spec.javax.rmi</groupId>
|
||||
<artifactId>jboss-rmi-api_1.0_spec</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.woodstox</groupId>
|
||||
<artifactId>woodstox-core</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.messaging.saaj</groupId>
|
||||
<artifactId>saaj-impl</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.jws</groupId>
|
||||
<artifactId>jakarta.jws-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.soap</groupId>
|
||||
<artifactId>jakarta.xml.soap-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.activation</groupId>
|
||||
<artifactId>jakarta.activation</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>aps-v2.3</id>
|
||||
<properties>
|
||||
<aps.app.tag>aps23</aps.app.tag>
|
||||
|
||||
<!-- APS provided versions -->
|
||||
<aps.cxf.version>3.5.2</aps.cxf.version>
|
||||
<aps.spring.version>5.3.20</aps.spring.version>
|
||||
<aps.jackson.version>2.13.3</aps.jackson.version>
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- APS provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-transports-http</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-core</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- APS v1.11.3 and later provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.jboss.spec.javax.rmi</groupId>
|
||||
<artifactId>jboss-rmi-api_1.0_spec</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.woodstox</groupId>
|
||||
<artifactId>woodstox-core</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.messaging.saaj</groupId>
|
||||
<artifactId>saaj-impl</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.jws</groupId>
|
||||
<artifactId>jakarta.jws-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.xml.soap</groupId>
|
||||
<artifactId>jakarta.xml.soap-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.activation</groupId>
|
||||
<artifactId>jakarta.activation</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
|
Reference in New Issue
Block a user