本文介紹了如何更改Maven打包的JAR的權限?我正在使用maven匯編插件的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我正在使用maven匯編插件來打包一個帶有所有依賴項的JAR。但是JAR文件是不可執行的。如何更改JAR的權限?
-rw-r--r-- 1 e17490 ADPRODDomain Users 12072889 Nov 12 14:16 com-foo-bar.jar
Pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>foo.Main</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
推薦答案
使用maven:exec
插件執行chmod
例如
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${org.codehaus.mojo.version}</version>
<executions>
<execution>
<id>script-chmod</id>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>chmod</executable>
<arguments>
<argument>+x</argument>
<argument>your-assembled-jar.jar</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
這篇關于如何更改Maven打包的JAR的權限?我正在使用maven匯編插件的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,