clean up build parameters

main
Jörg Prante 2 months ago
parent 1f217c417f
commit 4960f8cdb4

@ -11,8 +11,8 @@ wrapper {
}
ext {
name = rootProject.name
user = 'joerg'
name = 'datastructures'
description = 'Data structures for Java'
inceptionYear = '2012'
url = 'https://xbib.org/' + user + '/' + name

@ -1,3 +1,5 @@
group = org.xbib
name = datastructures
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 {
repositories {
maven {
url 'https://xbib.org/api/packages/joerg/maven'
url project.property('forgeJoUrl')
credentials(HttpHeaderCredentials) {
name = "Authorization"
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-common'
include 'datastructures-csv'
include 'datastructures-graphql'
include 'datastructures-immutable'
include 'datastructures-interpolation'
include 'datastructures-io'
@ -63,7 +62,6 @@ include 'datastructures-json-minimal'
include 'datastructures-json-noggit'
include 'datastructures-json-simple'
include 'datastructures-json-tiny'
//include 'datastructures-multi'
include 'datastructures-queue-tape'
include 'datastructures-raml'
include 'datastructures-tiny'

Loading…
Cancel
Save