This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
59 lines (49 loc) · 1.78 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
59
plugins {
id 'com.github.ben-manes.versions' version '0.20.0'
id 'net.ltgt.apt' version '0.19'
}
allprojects {
group = 'brandywine'
version = '0.0.1'
repositories {
mavenLocal()
mavenCentral()
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'net.ltgt.apt'
dependencies {
compile 'org.apache.commons:commons-compress:1.18'
compile 'org.apache.commons:commons-lang3:3.8.1'
compile 'mysql:mysql-connector-java:8.0.13'
compile 'io.netty:netty-all:4.1.31.Final'
compile 'com.google.guava:guava:27.0-jre'
compile 'org.sql2o:sql2o:1.6.0'
compile 'com.lambdaworks:scrypt:1.4.0'
compile 'org.bouncycastle:bcpkix-jdk15on:1.60'
compile 'org.reflections:reflections:0.9.11'
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'log4j:log4j:1.2.17'
compile 'org.apache.logging.log4j:log4j-api:2.11.1'
compile 'org.apache.logging.log4j:log4j-core:2.11.1'
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.11.1'
compile 'com.google.dagger:dagger:2.16'
annotationProcessor 'com.google.dagger:dagger-compiler:2.16'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.8.0'
testImplementation 'org.powermock:powermock-core:1.7.4'
testImplementation 'org.powermock:powermock-module-junit4:1.7.4'
testImplementation 'org.powermock:powermock-module-junit4-rule:1.7.4'
testImplementation 'org.powermock:powermock-api-mockito2:1.7.4'
testImplementation 'com.google.truth:truth:0.42'
}
sourceSets {
main {
java {
srcDir "${buildDir.absolutePath}/generated/source/apt/main"
}
}
}
}