This commit is contained in:
parent
1f217c417f
commit
4960f8cdb4
6 changed files with 4 additions and 39 deletions
|
@ -11,8 +11,8 @@ wrapper {
|
||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
|
name = rootProject.name
|
||||||
user = 'joerg'
|
user = 'joerg'
|
||||||
name = 'datastructures'
|
|
||||||
description = 'Data structures for Java'
|
description = 'Data structures for Java'
|
||||||
inceptionYear = '2012'
|
inceptionYear = '2012'
|
||||||
url = 'https://xbib.org/' + user + '/' + name
|
url = 'https://xbib.org/' + user + '/' + name
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
group = org.xbib
|
group = org.xbib
|
||||||
name = datastructures
|
name = datastructures
|
||||||
version = 5.2.0
|
version = 5.2.0
|
||||||
|
|
||||||
|
org.gradle.warning.mode = all
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
apply plugin: 'idea'
|
|
||||||
|
|
||||||
idea {
|
|
||||||
module {
|
|
||||||
outputDir file('build/classes/java/main')
|
|
||||||
testOutputDir file('build/classes/java/test')
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -2,7 +2,7 @@ if (project.hasProperty('forgeJoToken')) {
|
||||||
publishing {
|
publishing {
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
url 'https://xbib.org/api/packages/joerg/maven'
|
url project.property('forgeJoUrl')
|
||||||
credentials(HttpHeaderCredentials) {
|
credentials(HttpHeaderCredentials) {
|
||||||
name = "Authorization"
|
name = "Authorization"
|
||||||
value = "token ${project.property('forgeJoToken')}"
|
value = "token ${project.property('forgeJoToken')}"
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
apply plugin: 'ivy-publish'
|
|
||||||
|
|
||||||
publishing {
|
|
||||||
repositories {
|
|
||||||
ivy {
|
|
||||||
url = "https://xbib.org/repo"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
publications {
|
|
||||||
ivy(IvyPublication) {
|
|
||||||
from components.java
|
|
||||||
descriptor {
|
|
||||||
license {
|
|
||||||
name = 'The Apache License, Version 2.0'
|
|
||||||
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
||||||
}
|
|
||||||
author {
|
|
||||||
name = 'Jörg Prante'
|
|
||||||
url = 'http://example.com/users/jane'
|
|
||||||
}
|
|
||||||
descriptor.description {
|
|
||||||
text = rootProject.ext.description
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -50,7 +50,6 @@ include 'datastructures-api'
|
||||||
include 'datastructures-charset'
|
include 'datastructures-charset'
|
||||||
include 'datastructures-common'
|
include 'datastructures-common'
|
||||||
include 'datastructures-csv'
|
include 'datastructures-csv'
|
||||||
include 'datastructures-graphql'
|
|
||||||
include 'datastructures-immutable'
|
include 'datastructures-immutable'
|
||||||
include 'datastructures-interpolation'
|
include 'datastructures-interpolation'
|
||||||
include 'datastructures-io'
|
include 'datastructures-io'
|
||||||
|
@ -63,7 +62,6 @@ include 'datastructures-json-minimal'
|
||||||
include 'datastructures-json-noggit'
|
include 'datastructures-json-noggit'
|
||||||
include 'datastructures-json-simple'
|
include 'datastructures-json-simple'
|
||||||
include 'datastructures-json-tiny'
|
include 'datastructures-json-tiny'
|
||||||
//include 'datastructures-multi'
|
|
||||||
include 'datastructures-queue-tape'
|
include 'datastructures-queue-tape'
|
||||||
include 'datastructures-raml'
|
include 'datastructures-raml'
|
||||||
include 'datastructures-tiny'
|
include 'datastructures-tiny'
|
||||||
|
|
Loading…
Reference in a new issue