Skip to content

Commit

Permalink
use new group id
Browse files Browse the repository at this point in the history
  • Loading branch information
atoulme committed May 29, 2023
1 parent 1c591f6 commit 06b190e
Showing 1 changed file with 9 additions and 20 deletions.
29 changes: 9 additions & 20 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ allprojects {
from components.java
artifact sourcesJar { classifier 'sources' }
}
groupId 'org.apache.tuweni'
groupId 'io.tmio'
artifactId 'tuweni-' + project.name
version project.version

Expand All @@ -439,40 +439,29 @@ allprojects {
pom {
name = project.name
afterEvaluate { description = project.description }
url = 'https://github.com/apache/incubator-tuweni'
url = 'https://github.com/tmio/incubator-tuweni'
licenses {
license {
name = "The Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
scm {
connection = 'scm:https://github.com/apache/incubator-tuweni.git'
developerConnection = 'scm:git@github.com:apache/incubator-tuweni.git'
url = 'https://github.com/apache/incubator-tuweni'
connection = 'scm:https://github.com/tmio/incubator-tuweni.git'
developerConnection = 'scm:git@github.com:tmio/incubator-tuweni.git'
url = 'https://github.com/tmio/incubator-tuweni'
}
developers {
developer {
name = 'Antoine Toulme'
email = 'antoine@lunar-ocean.com'
organization = 'Apache'
organizationUrl = 'https://tuweni.apache.org'
}
developer {
name = 'Jonny Rhea'
organization = 'Apache'
organizationUrl = 'https://tuweni.apache.org'
}
developer {
name = 'Steven J Schroeder'
email = 'sjs@apache.org'
organization = 'Apache'
organizationUrl = 'https://tuweni.apache.org'
organization = 'The Machine Consultancy, LLC'
organizationUrl = 'https://themachine.io'
}
}
issueManagement {
system = "github"
url = "https://www.github.com/apache/incubator-tuweni/issues"
url = "https://www.github.com/tmio/incubator-tuweni/issues"
}
}

Expand Down Expand Up @@ -582,7 +571,7 @@ allprojects {
name = project.hasProperty('bintrayName') ? project.property('bintrayName') : 'invalid'
userOrg = project.hasProperty('bintrayOrg') ? project.property('bintrayOrg') : 'invalid'
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/apache/incubator-tuweni.git'
vcsUrl = 'https://github.com/tmio/incubator-tuweni.git'
}
}
}
Expand Down

0 comments on commit 06b190e

Please sign in to comment.