-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettings.gradle
38 lines (33 loc) · 868 Bytes
/
settings.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
pluginManagement {
repositories {
gradlePluginPortal()
maven {
url 'https://software.r3.com/artifactory/corda-dev'
}
}
plugins {
id 'biz.aQute.bnd.builder' version bnd_version
id 'org.jetbrains.kotlin.jvm' version kotlin_version
id 'net.corda.plugins.quasar-utils' version corda_plugins_version
id 'net.corda.plugins.cordapp-cpk' version corda_plugins_version
id 'com.gradle.enterprise' version '3.4.1'
}
}
plugins {
id 'com.gradle.enterprise'
}
rootProject.name = 'OSGi example'
include 'api'
include 'impl'
include 'kotlin'
include 'logback'
include 'logging'
include 'quasar'
include 'cordapp'
include 'framework-stub'
gradleEnterprise {
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
}
}