据我所知,Apache Daemon或Akuma都没有Maven插件。虽然你可以尝试通过使用maven-exec-plugin从Maven构建中调用它们。
至于你们的公司对使用GPL许可产品的保留意见,值得一读使用的影响。它并不像公司担心的那样恶毒。以下是对 GPL 的解释。当然,它在法律上没有任何分量(可能不正确或没有先例支持,我不是律师),但可能足以让你开始与你的法律人员交谈。
从引用的页面:
简单地将受版权保护的作品与另一部作品相结合并不能创建衍生作品。受版权保护的原始作品必须以某种方式进行修改。由此产生的衍生作品本身必须“代表原创作品”。因此,如果被许可人不修改原始的GPL许可程序,而只是运行它,他就不会创建衍生作品。
有一个Appassembler Maven插件,我认为它可以满足你的需求(尽管它确实创建了JSW包装器)。它创建一个 shell 脚本(和一个 bat 文件),并将所有应用程序 jar 收集到一个目录中。可以选择将其配置为创建基于 JSW 的守护程序配置。
下面是一个示例配置,它将在 target/appassembler 文件夹中生成独立应用程序,并在 target/appassembler/jsw/myApp 目录中生成 JSW 包装器文件。请注意,组装目标绑定到集成测试阶段,以确保创建项目的 jar。要生成输出运行 mvn 验证或仅生成服务包装器,请运行 mvn 包:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>assemble-standalone</id>
<phase>integration-test</phase>
<goals>
<goal>assemble</goal>
</goals>
<configuration>
<programs>
<program>
<mainClass>name.seller.rich.MyMainClass</mainClass>
<name>myShellScript</name>
</program>
</programs>
<platforms>
<platform>windows</platform>
<platform>unix</platform>
</platforms>
<!--collect all jars into the lib directory-->
<repositoryLayout>flat</repositoryLayout>
<repositoryName>lib</repositoryName>
</configuration>
</execution>
<execution>
<id>generate-jsw-scripts</id>
<phase>package</phase>
<goals>
<goal>generate-daemons</goal>
</goals>
<configuration>
<!--declare the JSW config -->
<daemons>
<daemon>
<id>myApp</id>
<mainClass>name.seller.rich.MyMainClass</mainClass>
<commandLineArguments>
<commandLineArgument>start</commandLineArgument>
</commandLineArguments>
<platforms>
<platform>jsw</platform>
</platforms>
</daemon>
</daemons>
<target>${project.build.directory}/appassembler</target>
</configuration>
</execution>
</executions>
</plugin>
作为参考,生成的文件如下所示:
myApp\bin\myApp
myApp\bin\myApp.bat
myApp\bin\wrapper-linux-x86-32
myApp\bin\wrapper-macosx-universal-32
myApp\bin\wrapper-solaris-x86-32
myApp\bin\wrapper-windows-x86-32.exe
myApp\conf\wrapper.conf
myApp\lib\libwrapper-linux-x86-32.so
myApp\lib\libwrapper-macosx-universal-32.jnilib
myApp\lib\libwrapper-solaris-x86-32.so
myApp\lib\wrapper-windows-x86-32.dll
myApp\lib\wrapper.jar