Compare commits

...

20 Commits

Author SHA1 Message Date
081ef4e290 upgrade to APS v24.4.0 2025-02-10 10:27:06 -05:00
ec8531af61 upgrade to APS v24.3.0 2024-10-15 15:27:35 -04:00
441cd67c7c upgrade to APS v24.2.1 2024-10-15 15:25:20 -04:00
3d195f6e8f fix merge mistake 2024-10-15 15:24:28 -04:00
77d7ba6eda Merge branch 'develop' into stable 2024-10-15 15:20:24 -04:00
6efe631cb6 jar to pom 2024-10-15 15:20:14 -04:00
66483da520 Merge branch 'develop' into stable 2024-10-15 15:12:59 -04:00
47def7f9fb v1.3.x 2024-10-15 15:10:00 -04:00
df90cc36c9 jakarta upgrade to support v24.x+ 2024-10-15 15:09:39 -04:00
97524b6610 APS v2.4.5 2024-10-10 11:35:30 -04:00
1981fbd7a5 APS v2.4.4 2024-06-18 11:47:31 -04:00
6bb0e73484 APS v2.4.3 2024-06-18 11:47:15 -04:00
cfa4a4305e APS v2.4.2 2024-06-18 11:46:57 -04:00
c9ffc904fc APS v2.4.1 2023-10-11 11:51:38 -04:00
81397bc424 APS v2.4.0 2023-10-11 11:51:02 -04:00
d51309edf9 APS v2.4.1 2023-10-11 11:44:13 -04:00
5ddd45e87e v1.2.0-aps-v2.3.9 pom 2023-08-16 17:16:01 -04:00
18df7846c4 removed excess spring requirement 2023-06-09 10:45:08 -04:00
80c0e87e9a updated to v2.4.0-RC2 2023-06-08 15:01:44 -04:00
2458bf3eae skipping license 2023-06-08 14:55:54 -04:00
2 changed files with 7 additions and 70 deletions

48
pom.xml
View File

@@ -6,13 +6,13 @@
<parent>
<groupId>com.activiti</groupId>
<artifactId>activiti-app-root</artifactId>
<version>2.3.8</version>
<version>24.4.0</version>
</parent>
<groupId>com.inteligr8.activiti</groupId>
<artifactId>cxf-activiti-ext</artifactId>
<version>1.2.0-aps-v2.3.8</version>
<packaging>jar</packaging>
<artifactId>cxf-activiti-app-ext</artifactId>
<version>1.3.0-aps-v24.4</version>
<packaging>pom</packaging>
<name>CXF-based JAX-RS &amp; JAX-WS enablement for APS App</name>
<description>An Alfresco Process Service App extension providing the missing components for JAX-RS-based client libraries.</description>
@@ -54,11 +54,6 @@
<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>
@@ -215,12 +210,6 @@
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<!-- Package CXF JAX-RS support -->
<dependency>
<groupId>org.apache.cxf</groupId>
@@ -230,8 +219,8 @@
</dependency>
<!-- Package JackSON JAX-RS support -->
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
<artifactId>jackson-jakarta-rs-json-provider</artifactId>
<scope>runtime</scope>
</dependency>
<!-- Package JackSON XML support -->
@@ -338,7 +327,7 @@
<plugin>
<groupId>io.repaint.maven</groupId>
<artifactId>tiles-maven-plugin</artifactId>
<version>2.21</version>
<version>2.40</version>
<extensions>true</extensions>
<configuration>
<tiles>
@@ -369,29 +358,6 @@
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>source</id>
<phase>package</phase>
<goals><goal>jar-no-fork</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>javadoc</id>
<phase>package</phase>
<goals><goal>jar</goal></goals>
<configuration>
<show>public</show>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<executions>

View File

@@ -1,29 +0,0 @@
/*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.activiti.extension.conf;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
/**
* A means for injecting packages to scan for the Spring context.
*
* @author brian@inteligr8.com
*/
@Configuration
@ComponentScan(basePackages = "${activiti-ext.scan.packages}")
public class CxfActivitiExtSpringComponentScanner {
}