Skip to content

Commit 9f41754

Browse files
committed
[WIP] Prepare for release
1 parent bf83ded commit 9f41754

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.4.0-rc1

build.gradle

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,28 @@ dependencies {
2323
}
2424

2525
bintray {
26-
user = System.getenv('BINTRAY_USER')
27-
key = System.getenv('BINTRAY_API_KEY')
26+
user = System.getenv('BINTRAY_SNOWPLOW_MAVEN_USER')
27+
key = System.getenv('BINTRAY_SNOWPLOW_MAVEN_API_KEY')
2828

2929
pkg {
3030
repo = 'snowplow-maven'
3131
name = archivesBaseName
32+
userOrg = 'snowplow'
3233
licenses = ['Apache-2.0']
3334
vcsUrl = 'https://github.com/snowplow-referer-parser/java-referer-parser.git'
34-
}
35-
publications = ['mavenJava']
36-
version {
37-
name = version
38-
gpg {
39-
sign = true
40-
}
41-
mavenCentralSync {
42-
sync = true
43-
user = System.getenv('SONA_USER')
44-
password = System.getenv('SONA_PASS')
35+
version {
36+
name = '0.4.0-rc1'
37+
gpg {
38+
sign = true
39+
}
40+
mavenCentralSync {
41+
sync = true
42+
user = System.getenv('SONA_USER')
43+
password = System.getenv('SONA_PASS')
44+
}
4545
}
4646
}
47+
publications = ['mavenJava']
4748
}
4849

4950
task javadocJar(type: Jar) {

0 commit comments

Comments
 (0)