106 lines
3.1 KiB
Groovy
106 lines
3.1 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
maven { url "https://repo.spring.io/release" }
|
|
}
|
|
dependencies {
|
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:2.0.2.RELEASE"
|
|
// TODO: Snapshots are used only for testing purposes
|
|
classpath "org.springframework.cloud:spring-cloud-contract-gradle-plugin:2.0.0.BUILD-SNAPSHOT"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'org.springframework.boot'
|
|
apply plugin: 'io.spring.dependency-management'
|
|
apply plugin: 'maven-publish'
|
|
|
|
group = 'pl.com.dddbyexamples'
|
|
version = getProp('newVersion') ?: '1.0-SNAPSHOT'
|
|
|
|
apply from: project.rootDir.absolutePath + '/gradle/pipeline.gradle'
|
|
|
|
bootJar.enabled = false
|
|
jar.enabled = true
|
|
bootRun.enabled = false
|
|
|
|
compileJava.options.compilerArgs << '-parameters'
|
|
compileTestJava.options.compilerArgs << '-parameters'
|
|
|
|
dependencies {
|
|
compileOnly('org.projectlombok:lombok:1.18.0')
|
|
annotationProcessor('org.projectlombok:lombok:1.18.0')
|
|
|
|
testCompile("org.spockframework:spock-core:1.1-groovy-2.4")
|
|
testCompile("net.bytebuddy:byte-buddy:1.8.12")
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${BOM_VERSION}"
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
if (getProp("M2_LOCAL")) {
|
|
maven {
|
|
url getProp("M2_LOCAL")
|
|
}
|
|
}
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
maven { url "https://repo.spring.io/release" }
|
|
}
|
|
|
|
publishing {
|
|
repositories {
|
|
maven {
|
|
url getProp('REPO_WITH_BINARIES_FOR_UPLOAD') ?:
|
|
getProp('REPO_WITH_BINARIES') ?: 'http://localhost:8081/artifactory/libs-release-local'
|
|
credentials {
|
|
username getProp('M2_SETTINGS_REPO_USERNAME') ?: 'admin'
|
|
password getProp('M2_SETTINGS_REPO_PASSWORD') ?: 'password'
|
|
}
|
|
}
|
|
}
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
artifactId project.name
|
|
from components.java
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.withType(Test) {
|
|
testLogging {
|
|
events "started", "passed", "skipped", "failed"
|
|
}
|
|
}
|
|
}
|
|
|
|
ext {
|
|
projectGroupId = project.group
|
|
// In a multi-module env we can specify which project is the one that produces the fat-jar
|
|
projectArtifactId = "app-monolith"
|
|
projectVersion = project.version
|
|
}
|
|
|
|
apply plugin: "java"
|
|
[bootJar, bootRun]*.enabled = false
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '4.8'
|
|
}
|
|
|
|
String getProp(String propName) {
|
|
return hasProperty(propName) ?
|
|
(getProperty(propName) ?: System.properties[propName]) : System.properties[propName] ?:
|
|
System.getenv(propName)
|
|
}
|