1
我要在項目的根某些文件(JAR,啓動腳本,文件)拷貝到某個目錄,比如dist/
。Maven,如何複製文件?
我正在使用maven-assembly-plugin並在pom.xml中設置了<configuration><outputDirectory>
。它在dist/
但裏面<my_project>-<decsriptor_id>/
子目錄下創建文件。
有什麼辦法來輸出它只是在dist/
根源在哪裏?
還是有在Maven的是簡單的拷貝文件的插件嗎?
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>maven-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<outputDirectory>${project.basedir}/dist</outputDirectory>
<descriptors>
<descriptor>${project.basedir}/src/main/maven-assembly/dist.xml</descriptor>
</descriptors>
</configuration>
</plugin>
dist.xml
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>dist</id>
<formats>
<format>dir</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<files>
<file>
<source>path........</source>
<fileMode>0755</fileMode>
<outputDirectory>.</outputDirectory>
</file>
</files>
</assembly>
你告訴插件目錄下創建一個以' DIR ',所以你爲什麼驚訝地有它在輸出?做一個ZIP,看看有沒有基本目錄這裏(因爲'假 includeBaseDirectory>'),只是格式的結果。你試圖完成什麼任務?和文件永遠不要向外界比'target'其它地方創建(所以'<輸出目錄> $ {} project.basedir/DIST輸出目錄>'是不是一個好主意)。 –
Tunaki
只是爲了方便起見,將所有需要的文件(來自不同的地方)放在一個目錄中,而沒有其他目標。爲什麼這不是一個好主意? – AlexP11223
只是因爲你的src文件夾在版本控制之下,這意味着你在生成過程中用生成的文件污染了它......默認情況下應該排除目標文件夾,因此目標文件夾是包含生成的東西的默認目錄(如編譯類,編譯測試等,以及創建的zip文件或jar文件)....這就是爲什麼它不是一個好主意的原因... – khmarbaise