-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (43 loc) · 1.14 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
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
}
}
subprojects {
group = 'org.stella'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
google()
}
}
configure(subprojects.findAll { it.name != 'stella-droid' }) {
apply plugin: 'java'
sourceCompatibility = 1.8
dependencies {
testImplementation "junit:junit:4.12"
}
}
project(':stella-blue-bridge') {
dependencies {
implementation project(':stella-blue-shared')
implementation "net.sf.bluecove:bluecove:2.1.0"
}
}
project(':stella-rest-bridge') {
apply plugin: 'application'
dependencies {
implementation project(':stella-rest-shared')
implementation("org.springframework.boot:spring-boot-starter-web:2.1.2.RELEASE")
// implementation("org.springframework.boot:spring-boot-starter-security:2.1.2.RELEASE")
testImplementation("org.springframework.boot:spring-boot-starter-test:2.1.2.RELEASE")
}
application {
mainClassName = "org.stella.restbridge.StellaRestBridge"
}
}