Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.apache.maven.plugins</groupId>
  3. <artifactId>maven-antrun-plugin</artifactId>
  4. <executions>
  5. <execution>
  6. <id>artifactory-jre</id>
  7. <phase>process-resources</phase>
  8. <goals>
  9. <goal>run</goal>
  10. </goals>
  11. <configuration>
  12. <target>
  13. <!-- download file -->
  14. <get src="${download.url}/${download.file}${download.filePostfix}"
  15. dest="${project.build.directory}/${download.file}${download.filePostfix}"
  16. verbose="true"
  17. usetimestamp="true"
  18. username="user"
  19. password="password123"/>
  20. </target>
  21. </configuration>
  22. </execution>
  23. </executions>
  24. </plugin>
  25.  
  26. <server>
  27. <username>user</username>
  28. <password>password123</password>
  29. <id>artifactory-jre</id>
  30. </server>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement