A complete 3D game development suite written purely in Java.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
//
|
|
|
|
// This file is to be applied to some subproject.
|
|
|
|
//
|
|
|
|
|
|
|
|
apply plugin: 'com.jfrog.bintray'
|
|
|
|
|
|
|
|
bintray {
|
|
|
|
user = bintray_user
|
|
|
|
key = bintray_api_key
|
|
|
|
configurations = ['archives']
|
|
|
|
dryRun = false
|
|
|
|
pkg {
|
|
|
|
repo = 'org.jmonkeyengine'
|
|
|
|
userOrg = 'jmonkeyengine'
|
|
|
|
name = project.name
|
|
|
|
desc = POM_DESCRIPTION
|
|
|
|
websiteUrl = POM_URL
|
|
|
|
licenses = ['BSD New']
|
|
|
|
vcsUrl = POM_SCM_URL
|
|
|
|
labels = ['jmonkeyengine']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bintrayUpload.dependsOn(writeFullPom)
|
|
|
|
|
|
|
|
bintrayUpload.onlyIf {
|
|
|
|
(bintray_api_key.length() > 0) &&
|
|
|
|
!(version ==~ /.*SNAPSHOT/)
|
|
|
|
}
|