-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
45 lines (37 loc) · 1.04 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.3.3.RELEASE"
classpath "org.springframework:springloaded:1.2.6.RELEASE"
}
}
repositories {
jcenter()
}
group 'io.onepush'
version '1.0.0'
apply plugin: 'java'
apply plugin: 'spring-boot'
apply plugin: 'idea'
idea {
module {
inheritOutputDirs = false
outputDir = file("$buildDir/classes/main/")
}
}
springBoot {
mainClass = "io.onepush.Server"
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.springframework.boot:spring-boot-starter-websocket"
compile "org.springframework.boot:spring-boot-starter-data-mongodb"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-starter-security"
compile "com.notnoop.apns:apns:1.0.0.Beta6"
testCompile "org.springframework.boot:spring-boot-starter-test"
}