mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-12 18:49:23 +01:00
fix: proper use of git version
This commit is contained in:
parent
8f6f5615ce
commit
89b657d397
2 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@ plugins {
|
|||
}
|
||||
|
||||
archivesBaseName = 'lll'
|
||||
version = gitVersion().split('-').getAt(0).replace('dirty', '')
|
||||
version = versionDetails().lastTag
|
||||
|
||||
java {
|
||||
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
|
||||
|
@ -17,7 +17,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.ow2.asm:asm-commons:9.5'
|
||||
implementation 'org.ow2.asm:asm-util:9.5'
|
||||
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'
|
||||
}
|
||||
|
|
|
@ -100,7 +100,7 @@ public class FieldProxy extends AbstractProxy {
|
|||
|
||||
/**
|
||||
* Sets the type of the field to the given type.
|
||||
* @param fqn – the fully qualified name of the parameter type
|
||||
* @param fqn the fully qualified name of the parameter type
|
||||
* @param arrayLevel the array level
|
||||
* @return the builder's state after the change
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue