-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (43 loc) · 1.16 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
plugins {
id 'eclipse'
id 'idea'
id 'com.github.ben-manes.versions' version '0.15.0'
id 'org.springframework.boot' version '1.5.7.RELEASE'
}
group = 'com.dataagg'
version = '0.1'
description = """云南分布科技DATokenSecurity"""
repositories {
mavenLocal()
maven {
url "http://maven.aliyun.com/nexus/content/groups/public/"
}
jcenter()
//mavenCentral()
}
dependencies {
testCompile 'org.springframework.boot:spring-boot-starter-test:1.5.7.RELEASE'
compile 'org.springframework.boot:spring-boot-devtools:1.5.7.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-web:1.5.7.RELEASE'
compile 'org.jodd:jodd-core:3.9.1'
compile 'org.jodd:jodd-bean:3.9.1'
compile 'org.jodd:jodd-http:3.9.1'
compile 'org.springframework.boot:spring-boot-starter-security'
compile 'org.springframework.security:spring-security-core:4.2.3.RELEASE'
testCompile 'junit:junit:4.12'
}
jar {
baseName = 'DATokenSecurity'
version = '0.1'
archiveName = 'DATokenSecurity.jar'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
sourceCompatibility = 1.8
targetCompatibility = 1.8
options.encoding = "UTF-8"
}
configurations {
published
}