shell – maven在Linux和Windows平台上调用外部脚本

前端之家收集整理的这篇文章主要介绍了shell – maven在Linux和Windows平台上调用外部脚本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在Linux和MS-Windows平台上运行外部脚本.

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

  1. <plugin>
  2. <groupId>org.codehaus.mojo</groupId>
  3. <artifactId>exec-maven-plugin</artifactId>
  4. <version>1.2.1</version>
  5. <executions>
  6. <execution>
  7. <id>compile-jni</id>
  8. <phase>compile</phase>
  9. <goals>
  10. <goal>exec</goal>
  11. </goals>
  12. <configuration>
  13. <executable>./compile-jni</executable>
  14. <workingDirectory>${basedir}/src/main/cpp</workingDirectory>
  15. </configuration>
  16. </execution>
  17. </executions>
  18. </plugin>

我为Linux / MS-Windows平台使用相同的Makefile

我的脚本compile-jni.bat:

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

我的脚本compile-jni.sh:

  1. #!/bin/sh
  2. make

更新:

两位同事建议选择:

>使用变量script.extension
更改< executable> ./ compile-jni ${script.extension}< / executable>在pom.xml中
并在命令行mvn compile -Dscript.extention = .bat附加变量
>或者在调用maven之前设置Visual Studio环境变量:

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

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

最后,我混合了想法=> < profile>用于根据操作系统设置内部变量script.extension:
  1. <profiles>
  2. <profile>
  3. <id>Windows</id>
  4. <activation>
  5. <os>
  6. <family>Windows</family>
  7. </os>
  8. </activation>
  9. <properties>
  10. <script.extension>.bat</script.extension>
  11. </properties>
  12. </profile>
  13. <profile>
  14. <id>unix</id>
  15. <activation>
  16. <os>
  17. <family>unix</family>
  18. </os>
  19. </activation>
  20. <properties>
  21. <script.extension>.sh</script.extension>
  22. </properties>
  23. </profile>
  24. </profiles>

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

  1. <plugin>
  2. <groupId>org.codehaus.mojo</groupId>
  3. <artifactId>exec-maven-plugin</artifactId>
  4. <version>1.2.1</version>
  5. <executions>
  6. <execution>
  7. <id>compile-jni</id>
  8. <phase>compile</phase>
  9. <goals>
  10. <goal>exec</goal>
  11. </goals>
  12. <configuration>
  13. <executable>./compile-jni${script.extension}</executable>
  14. </configuration>
  15. </execution>
  16. </executions>
  17. </plugin>

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

编译jni.bat:

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

compile-jni.sh:

  1. #!/bin/sh
  2. cd src/main/cpp
  3. make

猜你在找的Bash相关文章