Skip to content

Commit

Permalink
add more details for package creation and secures for maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
albertlatacz committed Dec 1, 2016
1 parent ba0db47 commit 8a8a7a6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ env:
- secure: "fpuaeSvHiDRtUGHRuCkaZOglaE8IujaCXjSShYP78kxaZUOkHCY6meGmk2YRB6nKTs80lpiQCGFOmtcdEOsCRt2kQXuzJR6NkcG8JEYbdD36G0zR/GpeZ38o3lZqd7Xy1FEGwTgMi0Wy699ZvSoBP1xtGz8A7f8G9ROV7E81gdw="
- secure: "bxZ+/YMNG5guSA4R62wsIODwvslnqh4YwzaZjCuSO8FsXzEFkRLbZlgNTJYthcKEOZK0Oq+7d0nr0Dh2hKSgOx/FM2nCNzL3kMc/D4gAi54OET8wOv21PgiZQomPlZd5v62uTdw8XDrSzdEG8tzjrA21GDGNFF+Uuz3KPfoQfc0="
- secure: "KdWNLW5VYhvGUMIB0Q4OwPfPAFLhVNi9hLRw2ZapBq245iVf7ayMXZznyOpSYgOjuXRqx/24ww+LSBFGM/rFetIiP2mA1A4RpxYpyRzJmfhxz3e4Rj71bE1JrLynY/MLIuH4NERMRdH1kZjQaY+IFkXqas5C+FD8Msj0owzlwLE="
- secure: "Z5wmAFWOUv1fV3A/iCDrz9J59vZVzAn1tQigpYKdCTsvuZMHvk7SP3+3Aak2NEtuRzzu09WuBmCE6pfES3HbvD2W0jR2iqiv0bECnt5pCptC9QjlAw9vvGhm0Tz/aR4dJwzAjWBREU4LTgjN65416jclKV1HxhJcw90CZbYBmNo="
- secure: "fovLGO44v27+u6dYAtT9zqpm/pJImgl6Bb4YqJ6VGSqx87axro3bkoeqlrw8aTThCqNxBCtoOPx7iPmQVi2l8fB5Dh7G8P50CYtT6fb9p8e7GHh9vZDBRk/UQmm5XALBX2dna1dN/UOKTyN/NFAajfCt6lAah5d9HvDpqw9E7Xs="



Expand Down
24 changes: 22 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,34 @@ bintray {

pkg {
repo = 'maven'
name = 'javarepl'
licenses = ['Apache-2.0']
name = 'java-repl'
desc = 'Java REPL is a simple Read-Eval-Print-Loop for Java language.'
websiteUrl = 'https://github.com/bintray/gradle-bintray-plugin'
issueTrackerUrl = 'https://github.com/albertlatacz/java-repl/issues'
vcsUrl = 'https://github.com/albertlatacz/java-repl.git'
licenses = ['Apache-2.0']
labels = ['java', 'repl']
publicDownloadNumbers = true
githubRepo = 'albertlatacz/java-repl'
githubReleaseNotesFile = 'README.md'

version {
name = projectVersion
desc = 'Auto-releasing Java REPL v.' + projectVersion +'!'
vcsTag = projectVersion

// gpg {
// sign = true
//// passphrase = 'passphrase' //Optional. The passphrase for GPG signing'
// }
//
// //Optional configuration for Maven Central sync of the version
// mavenCentralSync {
// sync = false //[Default: true] Determines whether to sync the version to Maven Central.
// user = System.getenv("MAVEN_CENTRAL_USERNAME") //OSS user token: mandatory
// password = System.getenv("MAVEN_CENTRAL_PASSWORD") //OSS user password: mandatory
// close = '1' //Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually.
// }
}
}
}
Expand Down

0 comments on commit 8a8a7a6

Please sign in to comment.