-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (24 loc) · 984 Bytes
/
Copy pathbuild.gradle
File metadata and controls
32 lines (24 loc) · 984 Bytes
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
project.group = 'com.daggerok'
version = 'dev'
buildscript {
dependencies { repositories { jcenter() }
classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.3.3.RELEASE'
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar { baseName = 'secure-me-please' }
targetCompatibility = sourceCompatibility = JavaVersion.VERSION_1_8
repositories { jcenter() }
dependencies {
compile 'org.springframework.boot:spring-boot-starter-data-rest',
'org.springframework.boot:spring-boot-starter-data-mongodb',
'de.flapdoodle.embed:de.flapdoodle.embed.mongo',
'org.projectlombok:lombok:1+',
'org.springframework.security.oauth:spring-security-oauth2',
'org.springframework.boot:spring-boot-starter-security'
testCompile 'org.springframework.security:spring-security-test',
'org.springframework.boot:spring-boot-starter-test'
}
task wrapper(type: Wrapper) { gradleVersion = '2.12' }