-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (38 loc) · 1.19 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.3.5.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'
repositories { scriptHandler ->
apply from: 'repo.gradle', to: scriptHandler
mavenCentral()
maven { url "https://mirrors.coding.net/content/repositories/central/" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.3.5.RELEASE")
compile group: 'org.apache.poi', name: 'poi', version: '3.14'
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile 'org.mariadb.jdbc:mariadb-java-client:1.3.6'
compile 'com.zaxxer:HikariCP:2.4.4'
compile "org.springframework.boot:spring-boot-starter-velocity:1.3.5.RELEASE"
compile 'com.surftools:BeanstalkClient:1.4.6'
}
bootRun {
debug=true
}
findbugs {
toolVersion = "3.0.1"
sourceSets = [sourceSets.main]
ignoreFailures = true
reportsDir = file("$project.buildDir/findbugsReports")
effort = "max"
reportLevel = "high"
visitors = ["FindSqlInjection", "SwitchFallthrough"]
omitVisitors = ["FindNonShortCircuit"]
}