diff --git a/build.gradle b/build.gradle index 478fe0b6..e08a40d9 100644 --- a/build.gradle +++ b/build.gradle @@ -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 { @@ -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" } } @@ -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 } @@ -180,7 +183,7 @@ bintray { publishing { publications { - processor (MavenPublication) { + core (MavenPublication) { from components.java artifact sourcesJar artifact javadocJar