forked from simpledotorg/room-metadata-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (27 loc) · 748 Bytes
/
build.gradle
File metadata and controls
36 lines (27 loc) · 748 Bytes
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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
id 'com.github.johnrengelman.shadow' version '7.1.0'
}
group 'org.simple'
version '2.0.0'
repositories {
mavenCentral()
}
shadowJar {
archiveClassifier.set('')
}
test {
useJUnitPlatform()
testLogging {
showStackTraces = true
exceptionFormat = "full"
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "com.github.javaparser:javaparser-core:3.19.0"
implementation "ch.qos.logback:logback-classic:1.2.3"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.1"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.7.1"
testImplementation "com.google.truth:truth:1.1.2"
}