5 Commits

Author SHA1 Message Date
bdbda54743 v1.0.2 pom 2025-02-13 15:58:45 -05:00
8d91166a01 Merge branch 'develop' into stable 2025-02-13 15:58:12 -05:00
370b385aea v1.0.1 pom 2025-02-13 15:08:24 -05:00
82b4c500d5 Merge branch 'develop' into stable 2025-02-12 15:16:48 -05:00
90ac5540df v1.0.0 poms 2025-02-11 17:37:28 -05:00
2 changed files with 77 additions and 22 deletions

View File

@@ -5,7 +5,7 @@
<groupId>com.inteligr8.activiti</groupId>
<artifactId>mq-activiti-ext-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>MQ Activiti Extension Parent</name>
@@ -76,4 +76,11 @@
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>inteligr8-releases</id>
<url>https://repos.inteligr8.com/nexus/repository/inteligr8-private/</url>
</repository>
</distributionManagement>
</project>

90
pom.xml
View File

@@ -6,12 +6,12 @@
<parent>
<groupId>com.inteligr8.activiti</groupId>
<artifactId>mq-activiti-ext-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
<artifactId>mq-activiti-ext</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.2</version>
<packaging>jar</packaging>
<name>MQ Activiti Extension</name>
@@ -185,25 +185,6 @@
</plugins>
</pluginManagement>
<plugins>
<!--
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>package-stencil</id>
<phase>package</phase>
<goals><goal>jar</goal></goals>
<configuration>
<classesDirectory>${basedir}/src/main/activiti</classesDirectory>
<classifier>stencil</classifier>
<includes>
<include>**/*</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.7.1</version>
@@ -375,6 +356,66 @@
</plugins>
</build>
</profile>
<profile>
<id>ossrh-release</id>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</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>
<execution>
<id>sign</id>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
<executions>
<execution>
<id>ossrh-deploy</id>
<phase>deploy</phase>
<goals><goal>deploy</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<repositories>
@@ -387,4 +428,11 @@
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-enterprise-releases</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>inteligr8-releases</id>
<url>https://repos.inteligr8.com/nexus/repository/inteligr8-private/</url>
</repository>
</distributionManagement>
</project>