Skip to content

Commit

Permalink
build: disable upload of archives
Browse files Browse the repository at this point in the history
  • Loading branch information
davidB committed Nov 9, 2015
1 parent cc54290 commit cd4381a
Showing 1 changed file with 36 additions and 35 deletions.
71 changes: 36 additions & 35 deletions build.gradle
Expand Up @@ -57,6 +57,7 @@ sourceSets.main.resources.srcDir 'src/main/java'

def v_slf4j = '1.7.7'
def v_jme3 = '3.1.0-SNAPSHOT'
//def v_jme3 = '3.0.10'
dependencies {
compile "org.slf4j:slf4j-api:${v_slf4j}"
provided "com.jme3:jme3-core:${v_jme3}"
Expand Down Expand Up @@ -87,10 +88,10 @@ idea {
}
}

buildscript {
repositories { jcenter() }
dependencies { classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.5' }
}
// buildscript {
// repositories { jcenter() }
// dependencies { classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.5' }
// }

jar {
manifest { attributes("Implementation-Version": buildVersion) }
Expand All @@ -110,34 +111,34 @@ sonarRunner {
}
}

uploadArchives {
repositories {
mavenDeployer {
repository(url: "$targetRepository/releases") {
authentication(userName: targetRepository_user, password: targetRepository_password)
}
}
}
}


bintray {
user = targetRepository_user
key = targetRepository_password

configurations = ['archives']
//publications = ['maven'] //When uploading Maven-based publication files
dryRun = false //Whether to run this as dry-run, without deploying
publish = true //If version should be auto published after an upload
pkg {
repo = 'VGS-OSS-Releases'
name = project.name
desc = "JFX Gui bridge for JME with usefull utilities for common usecases."
websiteUrl = "https://github.com/empirephoenix/JME3-JFX"
issueTrackerUrl = "https://github.com/empirephoenix/JME3-JFX/issues"
vcsUrl = "https://github.com/empirephoenix/JME3-JFX.git"
licenses = ['BSD 3-Clause']
labels = ['jmonkeyengine', 'gui']
publicDownloadNumbers = true
}
}
// uploadArchives {
// repositories {
// mavenDeployer {
// repository(url: "$targetRepository/releases") {
// authentication(userName: targetRepository_user, password: targetRepository_password)
// }
// }
// }
// }
//
//
// bintray {
// user = targetRepository_user
// key = targetRepository_password
//
// configurations = ['archives']
// //publications = ['maven'] //When uploading Maven-based publication files
// dryRun = false //Whether to run this as dry-run, without deploying
// publish = true //If version should be auto published after an upload
// pkg {
// repo = 'VGS-OSS-Releases'
// name = project.name
// desc = "JFX Gui bridge for JME with usefull utilities for common usecases."
// websiteUrl = "https://github.com/empirephoenix/JME3-JFX"
// issueTrackerUrl = "https://github.com/empirephoenix/JME3-JFX/issues"
// vcsUrl = "https://github.com/empirephoenix/JME3-JFX.git"
// licenses = ['BSD 3-Clause']
// labels = ['jmonkeyengine', 'gui']
// publicDownloadNumbers = true
// }
// }

0 comments on commit cd4381a

Please sign in to comment.