-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (35 loc) · 902 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
42
43
44
45
46
plugins {
id 'java'
id 'idea'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'commons-io:commons-io:2.6'
//sql
implementation group: 'mysql', name: 'mysql-connector-java', version: '5.1.13'
implementation 'com.zaxxer:HikariCP:4.0.1'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'org.hibernate:hibernate-core:5.6.10.Final'
implementation 'javax.persistence:javax.persistence-api:2.2'
implementation 'org.slf4j:slf4j-log4j12:1.7.21'
//testing
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}
sourceSets {
main {
java.srcDirs = files('src')
resources.srcDirs = files('src')
}
test {
java.srcDirs = files('test')
}
}
clean {
delete files('build')
}