move to xbib.org
This commit is contained in:
parent
e22730ea23
commit
a39c3cf12c
7 changed files with 17 additions and 93 deletions
15
README.md
15
README.md
|
@ -14,10 +14,11 @@ in migrating library data to Unicode, and UTF-8, respectively.
|
||||||
## Version history
|
## Version history
|
||||||
|
|
||||||
| Version | Release date |
|
| Version | Release date |
|
||||||
| ------- | ------------ |
|
|---------|--------------|
|
||||||
| 1.0.2 | Aug 30, 2016 |
|
| 3.0.0 | May 22, 2023 |
|
||||||
| 1.0.1 | Aug 20, 2016 |
|
| 1.0.2 | Aug 30, 2016 |
|
||||||
| 1.0.0 | Aug 18, 2016 |
|
| 1.0.1 | Aug 20, 2016 |
|
||||||
|
| 1.0.0 | Aug 18, 2016 |
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
@ -26,7 +27,7 @@ With Maven
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.xbib</groupId>
|
<groupId>org.xbib</groupId>
|
||||||
<artifactId>bibliographic-character-sets</artifactId>
|
<artifactId>bibliographic-character-sets</artifactId>
|
||||||
<version>1.0.2</version>
|
<version>3.0.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
With Gradle
|
With Gradle
|
||||||
|
@ -35,7 +36,7 @@ With Gradle
|
||||||
provided
|
provided
|
||||||
}
|
}
|
||||||
dependencies {
|
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
|
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.
|
All contributions and pull requests are welcome.
|
||||||
|
|
||||||
If you have questions or find issues, pleas post them at
|
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
|
## List of character sets included
|
||||||
|
|
||||||
|
|
10
build.gradle
10
build.gradle
|
@ -20,11 +20,11 @@ ext {
|
||||||
name = 'bibliographic-character-sets'
|
name = 'bibliographic-character-sets'
|
||||||
description = 'Bibliographic character sets for Java'
|
description = 'Bibliographic character sets for Java'
|
||||||
inceptionYear = '2016'
|
inceptionYear = '2016'
|
||||||
url = 'https://github.com/' + user + '/' + name
|
url = 'https://xbib.org/' + user + '/' + name
|
||||||
scmUrl = 'https://github.com/' + user + '/' + name
|
scmUrl = 'https://xbib.org/' + user + '/' + name
|
||||||
scmConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
|
scmConnection = 'scm:git::ssh://xbib.org/' + user + '/' + name + '.git'
|
||||||
scmDeveloperConnection = 'scm:git:ssh://git@github.com:' + user + '/' + name + '.git'
|
scmDeveloperConnection = 'scm:git:ssh://forgejo@xbib.org:' + user + '/' + name + '.git'
|
||||||
issueManagementSystem = 'Github'
|
issueManagementSystem = 'Forgejo'
|
||||||
issueManagementUrl = ext.scmUrl + '/issues'
|
issueManagementUrl = ext.scmUrl + '/issues'
|
||||||
licenseName = 'Affero GNU Public License Version 3'
|
licenseName = 'Affero GNU Public License Version 3'
|
||||||
licenseUrl = 'http://www.gnu.org/licenses/agpl-3.0.html'
|
licenseUrl = 'http://www.gnu.org/licenses/agpl-3.0.html'
|
||||||
|
|
|
@ -5,7 +5,7 @@ if (project.hasProperty('forgeJoToken')) {
|
||||||
url 'https://xbib.org/api/packages/xbib/maven'
|
url 'https://xbib.org/api/packages/xbib/maven'
|
||||||
credentials(HttpHeaderCredentials) {
|
credentials(HttpHeaderCredentials) {
|
||||||
name = "Authorization"
|
name = "Authorization"
|
||||||
value = "token ${project.getProperty('forgeJoToken')}"
|
value = "token ${project.property('forgeJoToken')}"
|
||||||
}
|
}
|
||||||
authentication {
|
authentication {
|
||||||
header(HttpHeaderAuthentication)
|
header(HttpHeaderAuthentication)
|
||||||
|
|
|
@ -16,7 +16,7 @@ publishing {
|
||||||
}
|
}
|
||||||
author {
|
author {
|
||||||
name = 'Jörg Prante'
|
name = 'Jörg Prante'
|
||||||
url = 'http://example.com/users/jane'
|
url = 'https://xbib.org/joerg'
|
||||||
}
|
}
|
||||||
descriptor.description {
|
descriptor.description {
|
||||||
text = rootProject.ext.description
|
text = rootProject.ext.description
|
||||||
|
|
|
@ -16,10 +16,10 @@ publishing {
|
||||||
}
|
}
|
||||||
developers {
|
developers {
|
||||||
developer {
|
developer {
|
||||||
id = 'jprante'
|
id = 'joerg'
|
||||||
name = 'Jörg Prante'
|
name = 'Jörg Prante'
|
||||||
email = 'joergprante@gmail.com'
|
email = 'joergprante@gmail.com'
|
||||||
url = 'https://github.com/jprante'
|
url = 'https://xbib.org/joerg'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
scm {
|
scm {
|
||||||
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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"
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue