Skip to content

Commit

Permalink
[DSD-5591] add plugin
Browse files Browse the repository at this point in the history
Signed-off-by: Challarao <challarao@beehyv.com>
  • Loading branch information
challabeehyv committed Jun 26, 2024
1 parent 14eaef3 commit 43cd5b5
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion mock-identity-certify-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version>
<maven-compiler-plugin.source>21</maven-compiler-plugin.source>
<maven-compiler-plugin.target>21</maven-compiler-plugin.target>
<maven-compiler-plugin.version>2.4</maven-compiler-plugin.version>
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
<maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
<maven-source-plugin>2.2.1</maven-source-plugin>
Expand Down Expand Up @@ -335,6 +335,26 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.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>
</plugins>
</build>
</project>

0 comments on commit 43cd5b5

Please sign in to comment.