diff --git a/README.md b/README.md index 442c7cf..e293992 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,11 @@ in migrating library data to Unicode, and UTF-8, respectively. ## Version history | Version | Release date | -| ------- | ------------ | -| 1.0.2 | Aug 30, 2016 | -| 1.0.1 | Aug 20, 2016 | -| 1.0.0 | Aug 18, 2016 | +|---------|--------------| +| 3.0.0 | May 22, 2023 | +| 1.0.2 | Aug 30, 2016 | +| 1.0.1 | Aug 20, 2016 | +| 1.0.0 | Aug 18, 2016 | ## Usage @@ -26,7 +27,7 @@ With Maven org.xbib bibliographic-character-sets - 1.0.2 + 3.0.0 With Gradle @@ -35,7 +36,7 @@ With Gradle provided } dependencies { - provided 'org.xbib:bibliographic-character-sets:1.0.2' + provided 'org.xbib:bibliographic-character-sets:3.0.0' } You can also include this jar in the classpath, the Java CharsetProvider and @@ -49,7 +50,7 @@ of your project to the public if you make modifications to this program. All contributions and pull requests are welcome. If you have questions or find issues, pleas post them at -https://github.com/xbib/bibliographic-character-sets/issues +https://xbib.org/xbib/bibliographic-character-sets/issues ## List of character sets included diff --git a/build.gradle b/build.gradle index 91eece7..7576ab6 100644 --- a/build.gradle +++ b/build.gradle @@ -20,11 +20,11 @@ ext { name = 'bibliographic-character-sets' description = 'Bibliographic character sets for Java' inceptionYear = '2016' - url = 'https://github.com/' + user + '/' + name - scmUrl = 'https://github.com/' + user + '/' + name - scmConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git' - scmDeveloperConnection = 'scm:git:ssh://git@github.com:' + user + '/' + name + '.git' - issueManagementSystem = 'Github' + url = 'https://xbib.org/' + user + '/' + name + scmUrl = 'https://xbib.org/' + user + '/' + name + scmConnection = 'scm:git::ssh://xbib.org/' + user + '/' + name + '.git' + scmDeveloperConnection = 'scm:git:ssh://forgejo@xbib.org:' + user + '/' + name + '.git' + issueManagementSystem = 'Forgejo' issueManagementUrl = ext.scmUrl + '/issues' licenseName = 'Affero GNU Public License Version 3' licenseUrl = 'http://www.gnu.org/licenses/agpl-3.0.html' diff --git a/gradle/publish/forgejo.gradle b/gradle/publish/forgejo.gradle index c549397..18d18c2 100644 --- a/gradle/publish/forgejo.gradle +++ b/gradle/publish/forgejo.gradle @@ -5,7 +5,7 @@ if (project.hasProperty('forgeJoToken')) { url 'https://xbib.org/api/packages/xbib/maven' credentials(HttpHeaderCredentials) { name = "Authorization" - value = "token ${project.getProperty('forgeJoToken')}" + value = "token ${project.property('forgeJoToken')}" } authentication { header(HttpHeaderAuthentication) diff --git a/gradle/publish/ivy.gradle b/gradle/publish/ivy.gradle index fe0a848..71aa155 100644 --- a/gradle/publish/ivy.gradle +++ b/gradle/publish/ivy.gradle @@ -16,7 +16,7 @@ publishing { } author { name = 'Jörg Prante' - url = 'http://example.com/users/jane' + url = 'https://xbib.org/joerg' } descriptor.description { text = rootProject.ext.description diff --git a/gradle/publish/maven.gradle b/gradle/publish/maven.gradle index ce6a26f..867e23a 100644 --- a/gradle/publish/maven.gradle +++ b/gradle/publish/maven.gradle @@ -16,10 +16,10 @@ publishing { } developers { developer { - id = 'jprante' + id = 'joerg' name = 'Jörg Prante' email = 'joergprante@gmail.com' - url = 'https://github.com/jprante' + url = 'https://xbib.org/joerg' } } scm { diff --git a/gradle/publishing/publication.gradle b/gradle/publishing/publication.gradle deleted file mode 100644 index 2e2b2c0..0000000 --- a/gradle/publishing/publication.gradle +++ /dev/null @@ -1,66 +0,0 @@ - -apply plugin: "de.marcphilipp.nexus-publish" - -publishing { - publications { - mavenJava(MavenPublication) { - from components.java - artifact sourcesJar - artifact javadocJar - pom { - name = project.name - description = rootProject.ext.description - url = rootProject.ext.url - inceptionYear = rootProject.ext.inceptionYear - packaging = 'jar' - organization { - name = 'xbib' - url = 'https://xbib.org' - } - developers { - developer { - id = 'jprante' - name = 'Jörg Prante' - email = 'joergprante@gmail.com' - url = 'https://github.com/jprante' - } - } - scm { - url = rootProject.ext.scmUrl - connection = rootProject.ext.scmConnection - developerConnection = rootProject.ext.scmDeveloperConnection - } - issueManagement { - system = rootProject.ext.issueManagementSystem - url = rootProject.ext.issueManagementUrl - } - licenses { - license { - name = rootProject.ext.licenseName - url = rootProject.ext.licenseUrl - distribution = 'repo' - } - } - } - } - } -} - -if (project.hasProperty("signing.keyId")) { - apply plugin: 'signing' - signing { - sign publishing.publications.mavenJava - } -} - -if (project.hasProperty("ossrhUsername")) { - nexusPublishing { - repositories { - sonatype { - username = project.property('ossrhUsername') - password = project.property('ossrhPassword') - packageGroup = "org.xbib" - } - } - } -} diff --git a/gradle/publishing/sonatype.gradle b/gradle/publishing/sonatype.gradle deleted file mode 100644 index e1813f3..0000000 --- a/gradle/publishing/sonatype.gradle +++ /dev/null @@ -1,11 +0,0 @@ - -if (project.hasProperty('ossrhUsername') && project.hasProperty('ossrhPassword')) { - - apply plugin: 'io.codearte.nexus-staging' - - nexusStaging { - username = project.property('ossrhUsername') - password = project.property('ossrhPassword') - packageGroup = "org.xbib" - } -}