Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
Signed-off-by: PRAFUL RAKHADE <[email protected]>
  • Loading branch information
Prafulrakhade authored Dec 26, 2023
1 parent 802833e commit 3770bd1
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions mock-abis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,14 +225,6 @@
<configuration>
<addResources>true</addResources>
</configuration>
<executions>
<execution>
<goals>
<goal>build-info</goal>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
Expand All @@ -259,6 +251,26 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>make-jar-executable</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<!-- Create a shell script to run the JAR file with executable permission -->
<chmod file="${project.build.directory}/*.jar" perm="ugo+rx"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
Expand Down

0 comments on commit 3770bd1

Please sign in to comment.