8

我正在使用 maven 程序集插件来打包一个包含所有依赖项的 jar。但是jar文件是不可执行的。如何更改 jar 的权限?

-rw-r--r--  1 e17490  ADPROD\Domain 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>
4

2 回答 2

12

使用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>
于 2013-11-12T20:44:12.527 回答
5

如果有 Java 支持,则可以在 Linux 上执行 Jar 文件。一些发行版已经带有这样的配置。您需要做的就是威胁 jar 文件,就好像它们是任何可执行文件一样,例如已编译的程序或脚本:

chmod 700 myJar.jar
./myJar.jar

所以这个问题确实有道理。

您需要注意,此解决方案可能无法跨平台移植。

根据this answer,您需要在Maven上使用以下内容:

<fileSets>
    <fileSet>
      <directory>${basedir}/src/main/web</directory>
      <includes>
        <include>some_dir</include>
      </includes>
      <outputDirectory>web</outputDirectory>
      <fileMode>0777</fileMode>
      <directoryMode>0777</directoryMode>
    </fileSet>
  </fileSets>

如果这不起作用,您还可以使用AntRun 插件从 Maven调用chmod Ant 任务

<chmod file="${dist}/start.sh" perm="ugo+rx"/>

于 2013-11-12T20:46:18.763 回答