aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: 8197b26f3e20f3f6d5ec78a1df7e11df05910cda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
plugins {
    id 'java-library'
    id 'com.palantir.git-version' version '0.13.0'
}

archivesBaseName = 'lll'
version = versionDetails().lastTag

java {
   sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
   withSourcesJar()
   withJavadocJar()
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.ow2.asm:asm-commons:9.7'
    implementation 'org.ow2.asm:asm-util:9.7'
    implementation 'org.apache.logging.log4j:log4j-api:2.20.0'
}