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

Rename artifact groupid #8

Merged
merged 3 commits into from
Jun 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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