Skip to content

Commit

Permalink
Merge pull request #8 from openapi-processor/rename-artifact-groupid
Browse files Browse the repository at this point in the history
Rename artifact groupid, resolves #7
  • Loading branch information
hauner authored Jun 13, 2020
2 parents 57b3bd7 + 3fa5d35 commit e20f4b6
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
id "com.github.ben-manes.versions" version "0.28.0"
}

group 'com.github.hauner.openapi'
group 'io.openapiprocessor'
version '1.0.0.M1'

java {
Expand All @@ -35,6 +35,10 @@ repositories {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
maven {
url "https://dl.bintray.com/openapi-processor/primary"
}
maven {
// deprecated but still used
url "https://dl.bintray.com/hauner/openapi-processor"
}
}
Expand Down Expand Up @@ -162,15 +166,14 @@ dokka {
bintray {
user = bintrayUser
key = bintrayKey
publications = ['processor']
publications = ['core']

pkg {
repo = 'openapi-processor'
repo = 'primary'
name = 'openapi-processor-core'
//userOrg = 'openapi-processor'
userOrg = 'openapi-processor'
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/hauner/openapi-processor-core'

vcsUrl = 'https://github.com/openapi-processor/openapi-processor-core'
version {
name = project.version
}
Expand All @@ -180,7 +183,7 @@ bintray {

publishing {
publications {
processor (MavenPublication) {
core (MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar
Expand Down

0 comments on commit e20f4b6

Please sign in to comment.