Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <exec dir="." executable="${maven.executable}" failonerror="true">
  2. <!-- <arg value="-U" /> -->
  3. <arg value="gpg:sign-and-deploy-file" />
  4. <arg value="-DartifactId=${artifact.id}" />
  5. <arg value="-Dfile=${artifact.id}/${artifact.id}.${packaging}" />
  6. <arg value="-Dgpg.executable=${gpg.executable}" />
  7. <arg value="-Dgpg.keyname=${gpg.keyname}" />
  8. <arg value="-Dgpg.passphrase=${gpg.passphrase}" />
  9. <arg value="-DgroupId=com.liferay.portal" />
  10. <arg value="-Dpackaging=${packaging}" />
  11. <arg value="-DpomFile=tools/maven/${artifact.id}.pom" />
  12. <arg value="-DrepositoryId=${maven.repository.id}" />
  13. <arg value="-Durl=${maven.url}" />
  14. <arg value="-Dversion=${maven.version}" />
  15. </exec>
  16.  
  17.  
  18. <exec dir="." executable="${maven.executable}" failonerror="true">
  19. <arg value="gpg:sign-and-deploy-file" />
  20. <arg value="-DartifactId=${artifact.id}" />
  21. <arg value="-Dfile=${artifact.id}/${artifact.id}-sources.${packaging}" />
  22. <arg value="-Dclassifier=sources" />
  23. <arg value="-DgeneratePom=false" />
  24. <arg value="-Dgpg.executable=${gpg.executable}" />
  25. <arg value="-Dgpg.keyname=${gpg.keyname}" />
  26. <arg value="-Dgpg.passphrase=${gpg.passphrase}" />
  27. <arg value="-DgroupId=com.liferay.portal" />
  28. <arg value="-Dpackaging=${packaging}" />
  29. <arg value="-DrepositoryId=${maven.repository.id}" />
  30. <arg value="-Durl=${maven.url}" />
  31. <arg value="-Dversion=${maven.version}" />
  32. </exec>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement