-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (35 loc) · 947 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
plugins {
id 'java'
}
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
group 'mateus.henrique.brum'
version '1.0.0'
jar {
manifest {
attributes "Main-Class": "brum.mateus.event.Main"
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
repositories {
mavenCentral()
}
dependencies {
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testImplementation 'org.mockito:mockito-core:3.+'
compile 'com.google.code.gson:gson:2.+'
compile 'org.hsqldb:hsqldb:2.+'
compile 'org.jdbi:jdbi3-core:3.+'
compile 'ch.qos.logback:logback-core:1.3.+'
compile 'ch.qos.logback:logback-classic:1.3.+'
compile 'org.slf4j:slf4j-api:1.7.+'
compile 'com.google.code.externalsortinginjava:externalsortinginjava:[0.6.0,)'
}
test {
useJUnitPlatform()
}