Compare commits

...
Author SHA1 Message Date
brian.long 59a34bad12 Merge branch 'develop' into develop-v26.2 2026-08-07 11:49:44 -04:00
brian.long cdd856bf64 APS v26.2.0 2026-08-07 11:49:35 -04:00
brian.long 344ecb90fc changing the repository URL 2026-08-07 11:48:32 -04:00
brian.long ed29a8d7ae Merge branch 'develop-v25.3' into develop-v26.1 2026-06-04 12:03:43 -04:00
brian.long 1b19623ba3 Merge branch 'develop-v25.2' into develop-v25.3 2026-06-04 12:03:20 -04:00
brian.long 9c550c2dee Merge branch 'develop-v25.1' into develop-v25.2 2026-06-04 12:02:52 -04:00
brian.long 0a12db346a Merge branch 'develop-v24.4' into develop-v25.1 2026-06-04 12:02:15 -04:00
brian.long 17db8831bd Merge branch 'develop-v24.3' into develop-v24.4 2026-06-04 12:01:42 -04:00
brian.long e5456a2d1c Merge branch 'develop-v24.2' into develop-v24.3 2026-06-04 12:00:01 -04:00
brian.long 31acb34dff Merge branch 'develop-v24.1' into develop-v24.2 2026-06-04 11:59:46 -04:00
brian.long c05880973a do not change the POM when shading 2026-06-04 11:59:20 -04:00
brian.long de9629d95d Merge branch 'develop-v25.3' into develop-v26.1 2026-06-04 10:26:17 -04:00
brian.long 792e8d58e4 Merge branch 'develop-v25.2' into develop-v25.3 2026-06-04 10:24:27 -04:00
brian.long ac9c8d8d8b Merge branch 'develop-v25.1' into develop-v25.2 2026-06-04 10:23:54 -04:00
brian.long 1a0b6d24ef Merge branch 'develop-v24.4' into develop-v25.1 2026-06-04 10:23:15 -04:00
brian.long 92249a7fc4 Merge branch 'develop-v25.1' into develop-v25.2 2026-06-04 10:12:43 -04:00
brian.long 204bf8d371 Merge branch 'develop-v24.4' into develop-v25.1 2026-06-04 10:09:18 -04:00
brian.long a693e027d3 APS v26.1 POM 2026-06-03 17:50:47 -04:00
brian.long ac5ae926ee APS v25.3 POM 2026-06-03 17:49:34 -04:00
brian.long d0b7b3d199 APS v25.2 POM 2026-06-03 17:48:42 -04:00
brian.long 892a7e03be APS v25.1 POM 2026-06-03 17:46:12 -04:00
+28 -6
View File
@@ -42,10 +42,10 @@
<maven.compiler.source>11</maven.compiler.source> <maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target> <maven.compiler.target>11</maven.compiler.target>
<aps.majorVersion>24.4</aps.majorVersion> <aps.majorVersion>26.2</aps.majorVersion>
<aps.version>${aps.majorVersion}.0</aps.version> <aps.version>${aps.majorVersion}.0</aps.version>
<!-- APS v24.4.0 uses CXF v4.0.5 --> <!-- APS v26.2.0 uses CXF v4.2.2 -->
<cxf.version>4.0.5</cxf.version> <cxf.version>4.2.2</cxf.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
@@ -89,13 +89,11 @@
<dependency> <dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId> <groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId> <artifactId>jackson-dataformat-xml</artifactId>
<scope>runtime</scope>
</dependency> </dependency>
<!-- Package JackSON joda-time support --> <!-- Package JackSON joda-time support -->
<dependency> <dependency>
<groupId>com.fasterxml.jackson.datatype</groupId> <groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-joda</artifactId> <artifactId>jackson-datatype-joda</artifactId>
<scope>runtime</scope>
</dependency> </dependency>
<!-- Provided by APS --> <!-- Provided by APS -->
@@ -126,6 +124,11 @@
<artifactId>versions-maven-plugin</artifactId> <artifactId>versions-maven-plugin</artifactId>
<version>2.21.0</version> <version>2.21.0</version>
</plugin> </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.7.0</version>
</plugin>
<plugin> <plugin>
<artifactId>maven-dependency-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId>
<version>3.11.0</version> <version>3.11.0</version>
@@ -163,6 +166,21 @@
<property>base.version</property> <property>base.version</property>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<executions>
<execution>
<!-- this is required because we are not creating a new POM when shading -->
<id>flatten-pom</id>
<phase>process-resources</phase>
<goals><goal>flatten</goal></goals>
<configuration>
<flattenMode>ossrh</flattenMode>
</configuration>
</execution>
</executions>
</plugin>
<!-- Several CXF libraries have a bus-extensions.txt file that will overwrite each other during the packaging process --> <!-- Several CXF libraries have a bus-extensions.txt file that will overwrite each other during the packaging process -->
<!-- Only the last one packaged will have its contents in tact --> <!-- Only the last one packaged will have its contents in tact -->
<!-- We need the contents of all of them and that can be done by simply concatenating them --> <!-- We need the contents of all of them and that can be done by simply concatenating them -->
@@ -227,7 +245,11 @@
<phase>package</phase> <phase>package</phase>
<goals><goal>shade</goal></goals> <goals><goal>shade</goal></goals>
<configuration> <configuration>
<!-- without this, the main artifact is shaded -->
<shadedArtifactAttached>true</shadedArtifactAttached> <shadedArtifactAttached>true</shadedArtifactAttached>
<!-- this keeps the dependencies in POM, letting downstream projects know what this library provides -->
<!-- this is necessary as we are not renaming/relocating any packages -->
<createDependencyReducedPom>false</createDependencyReducedPom>
<transformers> <transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer" /> <transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer"> <transformer implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer">
@@ -374,7 +396,7 @@
<repositories> <repositories>
<repository> <repository>
<id>activiti-enterprise-releases</id> <id>activiti-enterprise-releases</id>
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-enterprise-releases/</url> <url>https://artifacts.alfresco.com/nexus/repository/activiti-enterprise-releases/</url>
</repository> </repository>
</repositories> </repositories>
</project> </project>