-
Notifications
You must be signed in to change notification settings - Fork 76
/
build.gradle
209 lines (182 loc) · 6.57 KB
/
build.gradle
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
import static org.gradle.api.JavaVersion.VERSION_1_8
buildscript {
ext {
corda_release_group = 'net.corda'
corda_release_version = '4.10'
tokens_release_group = getProperty("group")
tokens_release_version = getProperty("version")
tokens_release_suffix= "$versionSuffix"
corda_gradle_plugins_version = '5.0.12'
kotlin_version = '1.2.71'
junit_version = '4.12'
dokka_version = '0.9.17'
slf4j_version = '1.7.25'
log4j_version = '2.9.1'
jackson_version = '2.9.0'
confidential_id_release_group = "com.r3.corda.lib.ci"
confidential_id_release_version = "1.0"
aetherVersion = '1.0.0.v20140518'
mavenVersion = '3.1.0'
maven_resolver_version = "1.1.1"
}
repositories {
mavenCentral()
mavenLocal()
maven { url "${publicArtifactURL}/corda-releases" }
maven { url "${publicArtifactURL}/corda-dependencies" }
maven { url "https://repo.gradle.org/gradle/libs-releases-local/" }
// as last resort, check our backup of now defunc JCenter repo
maven { url "${publicArtifactURL}/jcenter-backup" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-noarg:$kotlin_version"
classpath "net.corda.plugins:cordformation:$corda_gradle_plugins_version"
classpath "net.corda.plugins:quasar-utils:$corda_gradle_plugins_version"
classpath "net.corda.plugins:cordapp:$corda_gradle_plugins_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
classpath "com.gradle:gradle-enterprise-gradle-plugin:$gradleEnterprisePlugin"
classpath "com.gradle:common-custom-user-data-gradle-plugin:$customUserDataGradlePlugin"
}
}
plugins {
id "com.jfrog.artifactory" version "4.16.1"
}
apply plugin: "com.gradle.build-scan"
apply plugin: "com.gradle.common-custom-user-data-gradle-plugin"
buildScan {
server = gradleEnterpriseUrl
allowUntrustedServer = false
def apiKey = project.findProperty('CORDA_GRADLE_SCAN_KEY') ?: System.getenv('CORDA_GRADLE_SCAN_KEY')
if (apiKey?.trim()) {
publishAlways()
capture {
taskInputFiles = true
}
uploadInBackground = false
accessKey = apiKey
}
}
allprojects {
if (tokens_release_suffix.isEmpty()) {
version tokens_release_version
} else {
version "$tokens_release_version-$tokens_release_suffix"
}
group "$tokens_release_group"
configurations.all {
resolutionStrategy {
// Force dependencies to use the same version of Kotlin
force "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
force "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
force "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
force "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
force "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
cacheChangingModulesFor 0, 'seconds'
}
}
}
subprojects {
repositories {
mavenCentral()
mavenLocal()
maven { url 'https://jitpack.io' }
maven { url "${publicArtifactURL}/corda-dev" }
maven { url "${publicArtifactURL}/corda-releases" }
maven { url "${publicArtifactURL}/corda-lib" }
maven { url "${publicArtifactURL}/corda-lib-dev" }
maven { url "https://repo.gradle.org/gradle/libs-releases-local/" }
maven { url "${publicArtifactURL}/corda-dependencies" }
// as last resort, check our backup of now defunc JCenter repo
maven { url "${publicArtifactURL}/jcenter-backup" }
}
apply plugin: 'kotlin'
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile) {
kotlinOptions {
languageVersion = "1.2"
apiVersion = "1.2"
jvmTarget = VERSION_1_8
javaParameters = true // Useful for reflection.
}
}
tasks.withType(Jar) {
jar {
exclude "**/log4j2*.xml"
}
}
tasks.withType(Test) {
minHeapSize = "128m"
maxHeapSize = "4096m"
}
}
// Don't publish an empty "modules" JAR.
def publishProjects = [
project(":contracts"),
project(":workflows")
]
configure(publishProjects) { Project subproject ->
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.artifactory'
task sourceJar(type: Jar, dependsOn: subproject.classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: subproject.javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
task install(dependsOn: 'publishToMavenLocal')
publishing {
publications {
create(subproject.name, MavenPublication) {
from components.java
groupId subproject.group
artifactId "tokens-${subproject.name}"
artifact tasks.sourceJar
artifact tasks.javadocJar
pom {
name = subproject.name
description = subproject.description
url = 'https://github.com/corda/token-sdk'
scm {
url = 'https://github.com/corda/token-sdk'
}
licenses {
license {
name = 'Apache-2.0'
url = 'https://www.apache.org/licenses/LICENSE-2.0'
distribution = 'repo'
}
}
developers {
developer {
id = 'R3'
name = 'R3'
email = '[email protected]'
}
}
}
}
}
}
}
artifactory {
publish {
contextUrl = artifactoryContextUrl
repository {
repoKey = 'corda-lib'
username = System.getenv('CORDA_ARTIFACTORY_USERNAME') ?: System.getProperty('corda.artifactory.username')
password = System.getenv('CORDA_ARTIFACTORY_PASSWORD') ?: System.getProperty('corda.artifactory.password')
}
defaults {
if (publishProjects.contains(project)) {
publications(project.name)
}
}
}
}
wrapper {
gradleVersion = "5.6"
distributionType = Wrapper.DistributionType.ALL
}
//add for test re-run