-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (33 loc) · 1.43 KB
/
build.gradle
File metadata and controls
38 lines (33 loc) · 1.43 KB
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
group = 'ru.bormoshka.mock'
version = '1.0'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
apply plugin: 'idea'
apply from: 'repositories.gradle', to: allprojects
buildscript {
ext {
springBootVersion = "1.4.0.RELEASE"
springThymeleafVersion = "3.0.1.RELEASE"
mainClassName = 'ru.bormoshka.mock.system.Application'
libs = [
springBoot: [
"org.springframework.boot:spring-boot-starter-web:${springBootVersion}",
"org.springframework.boot:spring-boot-devtools:${springBootVersion}",
"org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}",
"org.springframework.boot:spring-boot-starter-thymeleaf:${springBootVersion}",
"org.springframework.boot:spring-boot-starter-tomcat:${springBootVersion}"
],
mongo : "org.mongodb:mongo-java-driver:3.3.0",
gson : "com.google.code.gson:gson:2.7",
javax : "javax.servlet:javax.servlet-api:3.0.1",
junit : 'junit:junit:4.11'
]
mods = [core : [project(':core')],
plugins: [project(":plugins:sms")]]
}
apply from: 'repositories.gradle', to: buildscript
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}