Skip to content

Commit 5a9b27e

Browse files
committed
tmp
1 parent f9b68d3 commit 5a9b27e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ bintray {
2626
user = System.getenv('BINTRAY_SNOWPLOW_MAVEN_USER')
2727
key = System.getenv('BINTRAY_SNOWPLOW_MAVEN_API_KEY')
2828

29+
publications = ['ParserPublication']
30+
2931
pkg {
3032
repo = 'snowplow-maven'
31-
name = archivesBaseName
33+
name = 'java-referer-parser'
3234
userOrg = 'snowplow'
3335
licenses = ['Apache-2.0']
3436
vcsUrl = 'https://github.com/snowplow-referer-parser/java-referer-parser.git'
@@ -44,7 +46,6 @@ bintray {
4446
}
4547
}
4648
}
47-
publications = ['mavenJava']
4849
}
4950

5051
task javadocJar(type: Jar) {
@@ -83,13 +84,13 @@ def pomConfig = {
8384
// Create the publication with the pom configuration:
8485
publishing {
8586
publications {
86-
mavenJava(MavenPublication) {
87+
ParserPublication(MavenPublication) {
8788
from components.java
8889
artifact sourcesJar
8990
artifact javadocJar
90-
groupId group
91+
groupId 'com.snowplowanalytics'
9192
artifactId 'java-referer-parser'
92-
version version
93+
version '0.4.0-rc5'
9394
pom.withXml {
9495
def root = asNode()
9596
root.appendNode('description', 'This is the Java implementation of referer-parser, the library for extracting attribution data from referer (sic) URLs.')

0 commit comments

Comments
 (0)