lillero/build.gradle

24 lines
474 B
Groovy
Raw Permalink Normal View History

2023-03-02 00:50:02 +01:00
plugins {
id 'java-library'
id 'com.palantir.git-version' version '0.13.0'
}
archivesBaseName = 'lll'
2024-05-09 21:20:09 +02:00
version = versionDetails().lastTag
2023-02-06 22:47:38 +01:00
java {
2023-09-08 20:36:42 +02:00
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
withJavadocJar()
}
2023-02-06 22:47:38 +01:00
repositories {
mavenCentral()
}
dependencies {
2024-05-09 21:20:09 +02:00
implementation 'org.ow2.asm:asm-commons:9.7'
implementation 'org.ow2.asm:asm-util:9.7'
2023-03-28 00:35:35 +02:00
implementation 'org.apache.logging.log4j:log4j-api:2.20.0'
2023-02-06 22:47:38 +01:00
}