-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
95 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
apply plugin: 'maven' | ||
|
||
def versionTag = version.toString() | ||
def githubUrl = 'https://' + githubRepo | ||
def scmUrl = 'scm:git:git://' + githubRepo + '.git' | ||
|
||
bintray { | ||
user = bintrayUser | ||
key = bintrayKey | ||
dryRun = deployDryRun ? true : false // Whether to run this as dry-run, without deploying | ||
publish = true // If version should be auto published after an upload | ||
configurations = ['archives'] // Use the archives Configuration. | ||
pkg { | ||
repo = 'maven' | ||
name = pkgName | ||
userOrg = user | ||
licenses = [pkgLicense] | ||
publicDownloadNumbers = false | ||
vcsUrl = githubUrl + '.git' | ||
desc = pkgDesc | ||
websiteUrl = githubUrl | ||
issueTrackerUrl = githubUrl + '/issues' | ||
version { | ||
name = versionTag | ||
desc = pkgDesc | ||
vcsTag = versionTag | ||
released = new Date() | ||
gpg { | ||
sign = true // Determines whether to GPG sign the files. | ||
} | ||
mavenCentralSync { | ||
sync = true // Optional (true by default). Determines whether to sync the version to Maven Central. | ||
user = mavenUserToken // OSS user token | ||
password = mavenUserPass // OSS user password | ||
close = '1' // Close staging repository and release artifacts to Maven Central. Default = 1 (true). Set to 0 = You will release the version manually. | ||
} | ||
} | ||
} | ||
} | ||
|
||
install { | ||
repositories.mavenInstaller { | ||
pom.name = pkgName | ||
pom.version = versionTag | ||
pom.artifactId = pkgName | ||
pom.project { | ||
name pkgName | ||
packaging 'bundle' | ||
description pkgDesc | ||
url githubUrl | ||
|
||
scm { | ||
url githubUrl | ||
connection scmUrl | ||
developerConnection scmUrl | ||
} | ||
|
||
developers { | ||
developer devInfo | ||
} | ||
|
||
licenses { | ||
license { | ||
name pkgLicense | ||
url pkgLicenseUrl | ||
distribution 'repo' | ||
} | ||
} | ||
} | ||
} | ||
} |