Skip to content

Commit

Permalink
Release version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kazyx committed Aug 30, 2015
1 parent 01a7ced commit 4e03115
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 35 deletions.
3 changes: 1 addition & 2 deletions wirespider/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ subprojects {
apply plugin: 'com.jfrog.bintray'

group = 'net.kazyx'
version = '1.1.0-SNAPSHOT'
version = '1.1.0'

repositories {
jcenter()
Expand Down Expand Up @@ -102,5 +102,4 @@ subprojects {

dryRun = true
}

}
31 changes: 1 addition & 30 deletions wirespider/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,38 +8,9 @@ dependencies {
testCompile 'org.eclipse.jetty.websocket:websocket-server:9.2.13.v20150730'
testCompile 'commons-codec:commons-codec:1.10'
testCompile 'org.apache.commons:commons-lang3:3.4'
testCompile project(':permessage-deflate') // For test coverage...
testCompile project(':wirespider-permessage-deflate') // For test coverage...
}

bintray {
pkg.name = 'net.kazyx:wirespider'
}


apply plugin: 'com.jfrog.bintray'

bintray {
user = project.hasProperty('bintray_user') ? bintray_user : ''
key = project.hasProperty('bintray_apikey') ? bintray_apikey : ''

pkg {
repo = 'maven'
name = 'net.kazyx:wirespider'
licenses = ['MIT']
websiteUrl = 'https://github.com/kazyx/wirespider'
issueTrackerUrl = 'https://github.com/kazyx/wirespider/issues'
vcsUrl = 'https://github.com/kazyx/wirespider.git'
version {
name = project.version
released = new Date()
gpg {
sign = true
passphrase = project.hasProperty('bintray_gpg_password') ? bintray_gpg_password : ''
}
}
}
publications = ['mavenPublication']
configurations = ['archives']

dryRun = true
}
4 changes: 2 additions & 2 deletions wirespider/permessage-deflate/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
archivesBaseName = 'wirespider-permessage-deflate'

dependencies {
compile project(':core')
compile project(':wirespider')

testCompile ('junit:junit:4.12') {
transitive = false
Expand All @@ -10,7 +10,7 @@ dependencies {
testCompile 'org.eclipse.jetty.websocket:websocket-server:9.2.13.v20150730'
testCompile 'commons-codec:commons-codec:1.10'
testCompile 'org.apache.commons:commons-lang3:3.4'
testCompile project(':core').sourceSets.test.output
testCompile project(':wirespider').sourceSets.test.output
}

bintray {
Expand Down
5 changes: 4 additions & 1 deletion wirespider/settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
include 'core', 'permessage-deflate'
include 'wirespider', 'wirespider-permessage-deflate'

project(':wirespider').projectDir = new File(settingsDir, 'core')
project(':wirespider-permessage-deflate').projectDir = new File(settingsDir, 'permessage-deflate')

0 comments on commit 4e03115

Please sign in to comment.