lillero/build.gradle

29 lines
612 B
Groovy
Raw 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'
version = gitVersion()
2023-02-06 22:47:38 +01:00
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
withJavadocJar()
}
2023-02-06 22:47:38 +01:00
repositories {
mavenCentral()
}
dependencies {
implementation 'org.ow2.asm:asm-commons:9.4'
2023-02-09 00:04:34 +01:00
implementation 'org.ow2.asm:asm-util:9.4'
implementation 'org.apache.logging.log4j:log4j-api:2.15.0'
2023-02-06 22:47:38 +01:00
}
2023-03-02 00:50:02 +01:00
jar {
archiveFileName = "${jar.archiveBaseName.get()}-${project.version.split('-')[0]}.${jar.archiveExtension.get()}"
}