1
+ buildscript {
2
+ repositories {
3
+ mavenCentral()
4
+ mavenLocal()
5
+ maven { url " http://repo.spring.io/snapshot" }
6
+ maven { url " http://repo.spring.io/milestone" }
7
+ maven { url " http://repo.spring.io/release" }
8
+ }
9
+ dependencies {
10
+ classpath " org.springframework.boot:spring-boot-gradle-plugin:2.0.2.RELEASE"
11
+ // TODO: Snapshots are used only for testing purposes
12
+ classpath " org.springframework.cloud:spring-cloud-contract-gradle-plugin:2.0.0.BUILD-SNAPSHOT"
13
+ }
14
+ }
15
+
16
+ allprojects {
17
+ apply plugin : ' java'
18
+ apply plugin : ' org.springframework.boot'
19
+ apply plugin : ' io.spring.dependency-management'
20
+ apply plugin : ' maven-publish'
21
+
22
+ group = ' pl.com.dddbyexamples'
23
+ version = getProp(' newVersion' ) ?: ' 1.0-SNAPSHOT'
24
+
25
+ apply from : project. rootDir. absolutePath + ' /gradle/pipeline.gradle'
26
+
27
+ bootJar. enabled = false
28
+ jar. enabled = true
29
+ bootRun. enabled = false
30
+
31
+ dependencyManagement {
32
+ imports {
33
+ mavenBom " org.springframework.cloud:spring-cloud-dependencies:${ BOM_VERSION} "
34
+ }
35
+ }
36
+
37
+ repositories {
38
+ mavenCentral()
39
+ mavenLocal()
40
+ if (getProp(" M2_LOCAL" )) {
41
+ maven {
42
+ url getProp(" M2_LOCAL" )
43
+ }
44
+ }
45
+ maven { url " http://repo.spring.io/snapshot" }
46
+ maven { url " http://repo.spring.io/milestone" }
47
+ maven { url " http://repo.spring.io/release" }
48
+ }
49
+
50
+ publishing {
51
+ repositories {
52
+ maven {
53
+ url getProp(' REPO_WITH_BINARIES_FOR_UPLOAD' ) ?:
54
+ getProp(' REPO_WITH_BINARIES' ) ?: ' http://localhost:8081/artifactory/libs-release-local'
55
+ credentials {
56
+ username getProp(' M2_SETTINGS_REPO_USERNAME' ) ?: ' admin'
57
+ password getProp(' M2_SETTINGS_REPO_PASSWORD' ) ?: ' password'
58
+ }
59
+ }
60
+ }
61
+ publications {
62
+ mavenJava(MavenPublication ) {
63
+ artifactId project. name
64
+ from components. java
65
+ }
66
+ }
67
+ }
68
+
69
+ tasks. withType(Test ) {
70
+ testLogging {
71
+ events " started" , " passed" , " skipped" , " failed"
72
+ }
73
+ }
74
+ }
75
+
76
+ ext {
77
+ projectGroupId = project. group
78
+ // In a multi-module env we can specify which project is the one that produces the fat-jar
79
+ projectArtifactId = " app-monolith"
80
+ projectVersion = project. version
81
+ }
82
+
83
+ apply plugin : " java"
84
+ [bootJar, bootRun]* . enabled = false
85
+
86
+ task wrapper (type : Wrapper ) {
87
+ gradleVersion = ' 4.8'
88
+ }
89
+
90
+ String getProp (String propName ) {
91
+ return hasProperty(propName) ?
92
+ (getProperty(propName) ?: System . properties[propName]) : System . properties[propName] ?:
93
+ System . getenv(propName)
94
+ }
0 commit comments