forked from yuanshenjian/rsa-java-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (47 loc) · 1.51 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
50
51
52
53
54
55
56
57
58
buildscript {
ext {
springBootVersion = '1.2.5.RELEASE'
}
repositories {
jcenter()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
classpath 'io.spring.gradle:dependency-management-plugin:0.5.1.RELEASE'
}
}
group 'org.yood.rsa'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}
task wrapper(type: Wrapper) {
gradleVersion = '2.5'
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-configuration-processor'
compile 'com.alibaba:fastjson:1.1.34'
compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.13'
compile 'org.codehaus.jackson:jackson-core-asl:1.9.13'
compile 'com.jayway.jsonpath:json-path:0.9.1'
compile "com.google.code.gson:gson:2.3.1"
compile 'commons-codec:commons-codec:1.10'
testCompile 'com.github.dreamhead:moco-core:0.10.0'
testCompile 'org.springframework.boot:spring-boot-starter-test'
}
defaultTasks 'clean', 'test'
jar {
baseName = 'rsa-java-js'
version = '1.0-SNAPSHOT'
}