我必须将Java EE应用程序分发到Windows和Linux。应用程序在WEB-INF / bin文件夹中有几个系统相关文件(dll等)
我正在尝试这种方法。
项目文件夹树是这样的:
我已将所有bin文件移至:
在第一步中,我试图配置Maven将distrib / bin / win复制到目标文件夹中的WEB-INF / bin
第二步,当第一步工作时,我将为windows添加两个配置文件,为linux添加另一个配置文件。
在我的pom.xml中,我将这些行放在:
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>distro-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>distrib/bin.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
这里有bin.xml源代码:
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd" >
<id>webtop10.2_bin</id>
<fileSets>
<fileSet>
<directory>${project.build.directory}/distrib/bin/win</directory>
<outputDirectory>/WEB-INF/bin</outputDirectory>
<includes>
<include>*.*</include>
</includes>
<fileMode>0750</fileMode>
<directoryMode>0755</directoryMode>
<lineEnding>keep</lineEnding>
</fileSet>
</fileSets>
</assembly>
当我执行mvn包时,构建成功但文件未复制到WEB-INF / bin文件夹。程序集插件说:
[INFO] --- maven-assembly-plugin:2.2-beta-5:single (distro-assembly) @ sibila ---
[INFO] Reading assembly descriptor: distrib/bin.xml
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
我是Maven的新手,所以我需要帮助。
答案 0 :(得分:1)
您说要复制的文件位于project/distrib/bin/win
,但您的程序集描述符的文件集是从${project.build.directory}/distrib/bin/win
复制的。除非您在POM中更改了项目的构建目录,否则${project.build.directory}
为project/target
。程序集文件集中的目录应该只是distrib/bin/win
,因为我相信该目录是相对于项目库的:
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>webtop10.2_bin</id>
<fileSets>
<fileSet>
<directory>distrib/bin/win</directory>
...
</fileset>
</fileSets>
</assembly>
答案 1 :(得分:1)
如果您想要的是将二进制文件复制到战争中的WEB-INF/bin
文件夹中,那么我认为您根本不应该使用maven-assembly-plugin
。
这是一种更简单的方法:
<build>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<webResources>
<resource>
<directory>distrib/win</directory>
<targetPath>WEB-INF/bin</targetPath>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
</build>
这可以专门用于构建配置文件,以便您选择Windows或Linux二进制文件。