move to xbib.org
This commit is contained in:
parent
e22730ea23
commit
a39c3cf12c
7 changed files with 17 additions and 93 deletions
|
@ -14,7 +14,8 @@ in migrating library data to Unicode, and UTF-8, respectively.
|
|||
## Version history
|
||||
|
||||
| Version | Release date |
|
||||
| ------- | ------------ |
|
||||
|---------|--------------|
|
||||
| 3.0.0 | May 22, 2023 |
|
||||
| 1.0.2 | Aug 30, 2016 |
|
||||
| 1.0.1 | Aug 20, 2016 |
|
||||
| 1.0.0 | Aug 18, 2016 |
|
||||
|
@ -26,7 +27,7 @@ With Maven
|
|||
<dependency>
|
||||
<groupId>org.xbib</groupId>
|
||||
<artifactId>bibliographic-character-sets</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<version>3.0.0</version>
|
||||
</dependency>
|
||||
|
||||
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
|
||||
|
||||
|
|
10
build.gradle
10
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'
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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