Guest User

Untitled

a guest
Feb 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. ...
  2. apply plugin: 'maven-publish'
  3. ...
  4.  
  5. publishing {
  6. repositories {
  7. maven {
  8. url "s3://BUCKET_NAME/release"
  9. credentials(AwsCredentials) {
  10. accessKey "AWS_ACCESS_KEY"
  11. secretKey "AWS_SECRET_KEY"
  12. }
  13. }
  14. }
  15.  
  16. publications {
  17. mavenJava(MavenPublication) {
  18. from components.java
  19. }
  20. }
  21. }
Add Comment
Please, Sign In to add comment