Skip to content
This repository was archived by the owner on Mar 16, 2025. It is now read-only.

Commit e20f4b6

Browse files
authored
Merge pull request #8 from openapi-processor/rename-artifact-groupid
Rename artifact groupid, resolves #7
2 parents 57b3bd7 + 3fa5d35 commit e20f4b6

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

build.gradle

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
id "com.github.ben-manes.versions" version "0.28.0"
1111
}
1212

13-
group 'com.github.hauner.openapi'
13+
group 'io.openapiprocessor'
1414
version '1.0.0.M1'
1515

1616
java {
@@ -35,6 +35,10 @@ repositories {
3535
url "https://oss.sonatype.org/content/repositories/snapshots"
3636
}
3737
maven {
38+
url "https://dl.bintray.com/openapi-processor/primary"
39+
}
40+
maven {
41+
// deprecated but still used
3842
url "https://dl.bintray.com/hauner/openapi-processor"
3943
}
4044
}
@@ -162,15 +166,14 @@ dokka {
162166
bintray {
163167
user = bintrayUser
164168
key = bintrayKey
165-
publications = ['processor']
169+
publications = ['core']
166170

167171
pkg {
168-
repo = 'openapi-processor'
172+
repo = 'primary'
169173
name = 'openapi-processor-core'
170-
//userOrg = 'openapi-processor'
174+
userOrg = 'openapi-processor'
171175
licenses = ['Apache-2.0']
172-
vcsUrl = 'https://github.com/hauner/openapi-processor-core'
173-
176+
vcsUrl = 'https://github.com/openapi-processor/openapi-processor-core'
174177
version {
175178
name = project.version
176179
}
@@ -180,7 +183,7 @@ bintray {
180183

181184
publishing {
182185
publications {
183-
processor (MavenPublication) {
186+
core (MavenPublication) {
184187
from components.java
185188
artifact sourcesJar
186189
artifact javadocJar

0 commit comments

Comments
 (0)