aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: 7c18fc6f49436f7020b7579040c267bb4a4c35d9 (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
24
25
26
27
plugins {
    id 'java-library'
    id 'com.palantir.git-version' version '0.13.0'
}

archivesBaseName = 'lll-mapper'
version = gitVersion()

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

repositories {
    mavenCentral()
   maven { url = 'https://maven.fantabos.co' }
}

dependencies {
   implementation 'ftbsc:lll:0.4.1'
}

jar {
    archiveFileName = "${jar.archiveBaseName.get()}-${project.version.split('-')[0]}.${jar.archiveExtension.get()}"
}