22 lines
528 B
Kotlin
22 lines
528 B
Kotlin
/*
|
|
* Project Asgard
|
|
*
|
|
* Copyright (c) 2021. Elex. All Rights Reserved.
|
|
* https://www.elex-project.com/
|
|
*/
|
|
|
|
plugins{
|
|
id("elex-base")
|
|
`java-library`
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("org.projectlombok:lombok:1.18.26")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.26")
|
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.26")
|
|
|
|
testImplementation("ch.qos.logback:logback-classic:1.4.5")
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.2")
|
|
}
|