-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.backup
113 lines (91 loc) · 2.26 KB
/
build.gradle.backup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
buildscript {
ext {
springBootVersion = '2.0.0.RELEASE'
}
repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("io.spring.gradle:dependency-management-plugin:0.5.2.RELEASE")
}
}
plugins {
id 'net.researchgate.release' version '2.6.0'
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'maven-publish'
apply plugin: 'net.researchgate.release'
group = 'com.rbc.xgz0.stream'
version = "${version}"
allprojects {
ext {
springBootVersion = '2.0.0.RELEASE'
springCloudVersion = 'Finchley.BUILD-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-stream-dependencies:Ditmars.SR3'
}
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
repositories {
maven { url "${nexusUrl}/central/" }
maven { url "${nexusUrl}/thirdparty/" }
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
maven {
credentials {
username nexusUsername
password nexusPassword
}
url "${nexusUrl}/xgz0-releases/"
}
maven {
credentials {
username nexusUsername
password nexusPassword
}
url "${nexusUrl}/xgz0-snapshots/"
}
}
apply plugin: 'java'
apply plugin: 'jacoco'
test {
testLogging {
events "PASSED", "FAILED", "SKIPPED"
}
}
}
subprojects.each { subproject -> evaluationDependsOn( subproject.path ) }
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
publishing {
repositories {
maven {
credentials {
username nexusUsername
password nexusPassword }
if(project.version.endsWith('-SNAPSHOT')) {
name "xgz0-snapshots"
url "${nexusUrl}/xgz0-snapshots/"
} else {
name "xgz0-releases"
url "${nexusUrl}/xgz0-releases/"
}
}
}
}