0
我有一個複製文件夾並創建JAR的任務。使用maven-assembly插件來生成一個jar,但問題是它創建一個文件夾artificat-id +版本我不想創建我需要的,因爲我是複製和創建一個jar。複製文件夾並在Maven中創建Jar
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>concordian</id>
<formats>
<format>jar</format>
</formats>
<!-- Adds the dependencies of our application -->
<fileSets>
<!-- Adds deploy scripts to the root directory of zip package. -->
<fileSet>
<directory>${project.build.directory}/concordion</directory>
<outputDirectory></outputDirectory>
<includes>
<include>**/**</include>
</includes>
</fileSet>
</fileSets>
</assembly>
它最終創建jar文件夾+和任何我從上面的結構複製的文件。我需要刪除的文件夾+
爲什麼你想創建通過Maven的ASSMBLY-插件,而不是行家-JAR-plugin的一個罐子? – khmarbaise 2015-02-12 05:46:31
我正在創建一個罐子,但我需要用一些文件創建一個罐子。 – pradeep 2015-02-12 06:52:08
「有些文件」是什麼意思?那麼maven-jar-plugin的includes選項呢? – khmarbaise 2015-02-12 07:02:59