希望一些jar文件內的文件複製到我的java項目的根文件夾中。不要在maven-dependency-plugin解壓縮目標中重現路徑
我用這個:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>prepare-package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>net.sourceforge.tess4j</groupId>
<artifactId>tess4j</artifactId>
<version>1.4.1</version>
<type>jar</type>
<includes>win32-x86/*.dll</includes>
<overWrite>true</overWrite>
<outputDirectory>${basedir}</outputDirectory> <!-- project root directory -->
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
問題是,我得到這個
javaProject
src
target
win32-x86/dll1.dll
win32-x86/dll2.dll
我想這
javaProject
src
target
dll1.dll
dll2.dll
我不想從裏面的文件夾路徑jar被轉載,我只想把這些文件轉儲到我的項目的根目錄中。
任何想法?
謝謝。
完美謝謝:D – Eildosa
20行XML,我可以用2行bash腳本完成此操作:( 甚至不能使它工作:( 我討厭maven。 –