Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
nntthuy-axonivy authored May 9, 2024
1 parent 42e0846 commit 254ec97
Showing 1 changed file with 39 additions and 6 deletions.
45 changes: 39 additions & 6 deletions approval-decision-utils-product/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,40 @@
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.axonivy.utils.approvaldecision</groupId>
<artifactId>approval-decision-utils-product</artifactId>
<version>10.0.18-SNAPSHOT</version>
<packaging>pom</packaging>
</project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.axonivy.utils.approvaldecision</groupId>
<artifactId>approval-decision-utils-product</artifactId>
<version>10.0.18-SNAPSHOT</version>
<packaging>pom</packaging>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>zip.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

0 comments on commit 254ec97

Please sign in to comment.