Advertisement
Guest User

ant script in pom.xml

a guest
Aug 1st, 2014
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.44 KB | None | 0 0
  1.  
  2.             <plugin>
  3.                 <artifactId>maven-antrun-plugin</artifactId>
  4.                 <version>1.7</version>
  5.                 <executions>
  6.                     <execution>
  7.                         <phase>install</phase>
  8.                         <configuration>
  9.                             <tasks>
  10.                                 <copy file="target/{COMPILED PLUGIN NAME}" todir="{DIRECTORY OF WHERE YOU WANT IT TO GO}" />
  11.                             </tasks>
  12.                         </configuration>
  13.                         <goals>
  14.                             <goal>run</goal>
  15.                         </goals>
  16.                     </execution>
  17.                 </executions>
  18.             </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement