mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-14 05:29:20 +01:00
zaaarf
f6539d4a07
- multiple injectors/target - removed strict limitation of one patch per class - made finders far smarter - added boolean for obfuscation environment (currently never changed from default)
23 lines
507 B
Groovy
23 lines
507 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.palantir.git-version' version '0.13.0'
|
|
}
|
|
|
|
archivesBaseName = 'processor'
|
|
version = gitVersion()
|
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = 'https://maven.fantabos.co' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.squareup:javapoet:1.13.0'
|
|
implementation 'ftbsc:lll:0.3.2'
|
|
}
|
|
|
|
jar {
|
|
archiveFileName = "${jar.archiveBaseName.get()}-${project.version.split('-')[0]}.${jar.archiveExtension.get()}"
|
|
}
|