forked from lets-blade/blade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (43 loc) · 1.89 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
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'idea'
group = 'com.bladejava'
version = '2.0.14.RELEASE'
description = 'blade-mvc'
sourceCompatibility = 1.8
targetCompatibility = 1.8
task wrapper(type: Wrapper) {
gradleVersion = '4.7'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
def bladeAsmVersion = '0.0.4'
def bladeLogVersion = '0.1.6'
def junitVersion = '4.12'
def slf4jApiVersion = '1.7.21'
def nettyVersion = '4.1.30.Final'
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "http://repo.maven.apache.org/maven2" }
mavenCentral()
}
dependencies {
compile group: 'com.bladejava', name: 'blade-asm', version: bladeAsmVersion
compile group: 'com.bladejava', name: 'blade-log', version: bladeLogVersion
compile group: 'org.slf4j', name: 'slf4j-api', version: slf4jApiVersion
compile group: 'io.netty', name: 'netty-codec-http', version: nettyVersion
compile group: 'io.netty', name: 'netty-handler', version: nettyVersion
testCompile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
testCompile group: 'org.webjars', name: 'bootstrap', version: '3.3.7'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
testCompile group: 'com.mashape.unirest', name: 'unirest-java', version: '1.4.9'
testCompile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
testCompile group: 'org.webjars', name: 'bootstrap', version: '4.1.0'
testCompile group: 'junit', name: 'junit', version: junitVersion
testCompile group: 'org.projectlombok', name: 'lombok', version: '1.16.22'
compileOnly group: 'junit', name: 'junit', version: junitVersion
compileOnly group: 'io.netty', name: 'netty-transport-native-epoll', version: nettyVersion
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.16.22'
}