forked from longkerdandy/mithqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (31 loc) · 901 Bytes
/
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
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
// Group Id
group 'com.github.longkerdandy'
// Version
version '1.1.0.Alpha1-SNAPSHOT'
// JDK
sourceCompatibility = 1.8
// Encoding
tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }
// Maven Repository
repositories {
mavenCentral();
}
// Dependencies
dependencies {
// apache commons
compile 'org.apache.commons:commons-lang3:3.4'
compile 'commons-configuration:commons-configuration:1.10'
// logger
compile 'org.slf4j:slf4j-api:1.7.13'
compile 'ch.qos.logback:logback-core:1.1.3'
compile 'ch.qos.logback:logback-classic:1.1.3'
// junit
testCompile 'junit:junit:4.12'
// mock
compile 'org.mockito:mockito-all:1.10.19'
compile 'org.easymock:easymock:3.4'
}
}