Created
May 23, 2011 03:20
-
-
Save tony1223/986162 to your computer and use it in GitHub Desktop.
如果你想把dependency的jar都搬出來,可以用這隻maven plug-in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <build> | |
| <plugins> | |
| <plugin> | |
| <artifactId>maven-dependency-plugin</artifactId> | |
| <executions> | |
| <execution> | |
| <id>copy-dependencies</id> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>copy-dependencies</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| <resources> | |
| <resource> | |
| <directory>${basedir}/target/dependency</directory> | |
| </resource> | |
| </resources> | |
| </build> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment