Advertisement
Guest User

Untitled

a guest
Sep 15th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. publishing {
  2. publications {
  3. if (plugins.hasPlugin('war')) {
  4. webApp(MavenPublication) {
  5. from components.web
  6. }
  7. } else if (plugins.hasPlugin('java')) {
  8. mavenJava(MavenPublication) {
  9. from components.java
  10. }
  11. }
  12. }
  13. repositories {
  14. maven {
  15. url 'http://ryjek.krakow.comarch:2000/content/repositories/snapshots'
  16. credentials {
  17. username = project.credentials.("snapshots.username")
  18. password = project.credentials.("snapshots.password")
  19. }
  20.  
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement