mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-22 16:14:55 +01:00
chore: added palantir
This commit is contained in:
parent
652a5103c6
commit
97c59cdc62
1 changed files with 7 additions and 1 deletions
|
@ -1,8 +1,10 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
|
id 'com.palantir.git-version' version '0.13.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'ftbsc.lll.processor'
|
archivesBaseName = 'processor'
|
||||||
|
version = gitVersion()
|
||||||
|
|
||||||
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
|
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
|
||||||
|
|
||||||
|
@ -16,3 +18,7 @@ dependencies {
|
||||||
implementation 'com.squareup:javapoet:1.13.0'
|
implementation 'com.squareup:javapoet:1.13.0'
|
||||||
implementation 'ftbsc:lll:0.3.0'
|
implementation 'ftbsc:lll:0.3.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
archiveFileName = "${jar.archiveBaseName.get()}-${project.version.split('-')[0]}.${jar.archiveExtension.get()}"
|
||||||
|
}
|
Loading…
Reference in a new issue