25

我需要在 Linux 和 MS-Windows 平台上运行外部脚本。

  1. 我使用正确的插件exec-maven-plugin吗?
  2. 有没有更合适的插件?
  3. 我应该输入什么文件名<executable>....</executable>

    <plugin>
      <groupId>org.codehaus.mojo</groupId>
      <artifactId>exec-maven-plugin</artifactId>
      <version>1.2.1</version>
        <executions>
            <execution>
                <id>compile-jni</id>
                <phase>compile</phase>
                <goals>
                    <goal>exec</goal>
                </goals>
                <configuration>
                    <executable>./compile-jni</executable>
                    <workingDirectory>${basedir}/src/main/cpp</workingDirectory>
                </configuration>
            </execution>
        </executions>
    </plugin>
    

Makefile对两个平台 Linux/MS-Windows 都使用相同的

我的脚本compile-jni.bat

call "%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
bash -c "make" 

我的脚本compile-jni.sh

#!/bin/sh
make

更新:

两位同事提出了替代方案:

  1. 在命令行中使用变量script.extension 更改 并附加变量<executable>./compile-jni${script.extension}</executable>pom.xmlmvn compile -Dscript.extention=.bat

  2. 或在调用 maven 之前设置 Visual Studio 环境变量:

    call "C:\%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
    mvn compile #(the same script 'bash -c "make"' works on both platforms)
    

但是在这两种解决方案上,Eclipse 用户可能会被卡住......我仍在寻找一个自动和优雅的解决方案......

4

2 回答 2

40

最后,我混合了想法 =>用于根据操作系统<profiles>设置内部变量:script.extension

<profiles>
  <profile>
    <id>Windows</id>
    <activation>
      <os>
        <family>Windows</family>
      </os>
    </activation>
    <properties>
      <script.extension>.bat</script.extension>
    </properties>
  </profile>
  <profile>
    <id>unix</id>
    <activation>
      <os>
        <family>unix</family>
      </os>
    </activation>
    <properties>
      <script.extension>.sh</script.extension>
    </properties>
  </profile>
</profiles>

然后我使用变量来完成脚本文件名:

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>exec-maven-plugin</artifactId>
  <version>1.2.1</version>
  <executions>
    <execution>
      <id>compile-jni</id>
      <phase>compile</phase>
      <goals>
        <goal>exec</goal>
      </goals>
      <configuration>
        <executable>./compile-jni${script.extension}</executable>
      </configuration>
    </execution>
  </executions>
</plugin>


  ⚠   As noticed by Maksim for maven 3.5.4 move up the section <configuration> as shown below:  
 

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>exec-maven-plugin</artifactId>
  <configuration>
    <executable>./compile-jni${script.extension}</executable>
  </configuration>
  <version>1.2.1</version>
  <executions>
    <execution>
      <id>compile-jni</id>
      <phase>compile</phase>
      <goals>
        <goal>exec</goal>
     </goals>
    </execution>
  </executions>
</plugin>

我已将工作目录从 移动pom.xml到 shell 脚本。为了简化维护,在这个 shell 脚本中移动了常用的东西。因此,批处理文件使用这个 shell 脚本:

compile-jni.bat

call "%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
bash compile-jni.sh

compile-jni.sh

#!/bin/sh
cd src/main/cpp
make
于 2013-02-11T14:38:27.637 回答
5

运行 sh 脚本的示例。

这只是chmod为 sh 脚本做的。请记住,如果您有一个 sh 脚本,则绝对应该chmod在执行其他操作(例如运行实际脚本)之前执行一个,因此以此为例,您可以执行以下第一个<execution>操作,然后添加另一个<execution>来运行您的脚本。

对于批处理文件,您只能有一个<execution>来运行您的脚本

        <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>yourscript.sh</argument>
                        </arguments>
                    </configuration>
                </execution>
            </executions>
        </plugin>

并且您可能希望根据您的机器添加配置文件:

<profiles>
  <profile>
    <activation>
      <os>
        <family>!windows</family>
      </os>
    </activation>
    <plugin>
      <!-- add your exec-maven-plugin here -->
    </plugin>
    ...
  </profile>
</profiles>

希望这将是您需要的开始

于 2013-02-11T10:32:50.850 回答