-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.gradle
46 lines (37 loc) · 895 Bytes
/
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
buildscript {
apply from: file('gradle/buildscript.gradle'), to: buildscript
}
plugins {
id 'com.gradle.build-scan' version '1.15.2'
}
buildScan {
licenseAgreementUrl = 'https://gradle.com/terms-of-service'
licenseAgree = 'yes'
publishAlways()
}
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
project(":catnap-core") {
ext.artifact = 'catnap-core'
}
project(":catnap-jaxrs") {
ext.artifact = 'catnap-jaxrs'
}
project(":catnap-spring") {
ext.artifact = 'catnap-spring'
repositories {
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
}
project(":catnap-springboot") {
ext.artifact = 'catnap-springboot'
repositories {
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
}