plugins { //id 'io.spring.dependency-management' version "1.0.10.RELEASE" //id 'org.springframework.boot' version "2.3.5.RELEASE" apply false id "nebula.ospackage" version "8.4.1" apply false } allprojects { apply plugin: 'eclipse' group = 'eu.dariah.de.minfba' version = '3.12-SNAPSHOT' repositories { mavenLocal() maven { url = 'https://minfba.de.dariah.eu/nexus/repository/minfba-central/' } } ext { coreVersion = "5.4.1-SNAPSHOT" gtfVersion = "1.6.2-SNAPSHOT" processingVersion = "4.0.2-SNAPSHOT" colregModelVersion = "3.15.0-RELEASE" dariahSpVersion = "1.4.0-SNAPSHOT" springVersion = "4.3.6.RELEASE" jacksonVersion = "2.9.6" slf4jVersion = "1.7.22" commonsLangVersion = "3.3.2" httpComponentsVersion = "4.5.5" elasticsearchVersion = "7.3.0" logbackVersion = "1.1.3" lombokVersion = "1.18.12" mavenRepo = 'https://minfba.de.dariah.eu/nexus/repository/minfba-central/' releasesRepo = "https://minfba.de.dariah.eu/nexus/repository/minfba-releases/" snapshotsRepo = "https://minfba.de.dariah.eu/nexus/repository/minfba-snapshots/" aptReleasesRepo = 'https://minfba.de.dariah.eu/nexus/repository/minfba-apt-releases/' aptTestingRepo = 'https://minfba.de.dariah.eu/nexus/repository/minfba-apt-testing/' yumRepo = 'https://minfba.de.dariah.eu/nexus/repository/minfba-yum/' repoUser = project.hasProperty('nexususer') ? project.getProperty('nexususer') : '?'; repoPass = project.hasProperty('nexuspass') ? project.getProperty('nexuspass') : '' // Filled dynamically by packaging tasks debFile = "" rpmFile = "" aptRepo = "" } } subprojects { apply plugin: 'java' apply plugin: 'maven-publish' /*apply plugin: 'io.spring.dependency-management' dependencyManagement { imports { mavenBom(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES) } }*/ publishing { publications { maven(MavenPublication) { pom { name = 'DARIAH-DE Generic Search' url = 'https://gitlab.rz.uni-bamberg.de/dariah/search/' licenses { license { name = 'The Apache License, Version 2.0' url = 'http://www.apache.org/licenses/LICENSE-2.0.txt' } } developers { developer { id = 'tgradl' name = 'Tobias Gradl' email = 'tobias.gradl@uni-bamberg.de' } } scm { connection = 'scm:git:git://gitlab.rz.uni-bamberg.de/dariah/search.git' developerConnection = 'scm:git:git://gitlab.rz.uni-bamberg.de/dariah/search.git' url = 'https://gitlab.rz.uni-bamberg.de/dariah/search' } issueManagement { system = 'GitLab' url = 'https://gitlab.rz.uni-bamberg.de/dariah/search/issues' } } } } repositories { maven { def releasesRepoUrl = "https://minfba.de.dariah.eu/nexus/repository/minfba-releases/" def snapshotsRepoUrl = "https://minfba.de.dariah.eu/nexus/repository/minfba-snapshots/" if (version.endsWith('SNAPSHOT') || version.endsWith('RELEASE')) { credentials { username project.hasProperty('nexususer') ? project.getProperty('nexususer') : '' password project.hasProperty('nexuspass') ? project.getProperty('nexuspass') : '' } url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl } else { // Have a local test repo under buildDir to be able to test publish but only actually do publish when the version ending matches url = "$buildDir/repo/" } } } } java { sourceCompatibility = JavaVersion.VERSION_1_8 } tasks.withType(JavaCompile) { options.encoding = 'UTF-8' } task sourcesJar(type: Jar, dependsOn: classes) { classifier = 'sources' from sourceSets.main.allSource } task javadocJar(type: Jar, dependsOn: javadoc) { classifier = 'javadoc' from javadoc.destinationDir } artifacts { archives sourcesJar archives javadocJar } }