fix: proper use of git version

This commit is contained in:
zaaarf 2024-05-09 21:20:09 +02:00
parent 8f6f5615ce
commit 89b657d397
No known key found for this signature in database
GPG key ID: 102E445F4C3F829B
2 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@ plugins {
} }
archivesBaseName = 'lll' archivesBaseName = 'lll'
version = gitVersion().split('-').getAt(0).replace('dirty', '') version = versionDetails().lastTag
java { java {
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8 sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
@ -17,7 +17,7 @@ repositories {
} }
dependencies { dependencies {
implementation 'org.ow2.asm:asm-commons:9.5' implementation 'org.ow2.asm:asm-commons:9.7'
implementation 'org.ow2.asm:asm-util:9.5' implementation 'org.ow2.asm:asm-util:9.7'
implementation 'org.apache.logging.log4j:log4j-api:2.20.0' implementation 'org.apache.logging.log4j:log4j-api:2.20.0'
} }

View file

@ -100,7 +100,7 @@ public class FieldProxy extends AbstractProxy {
/** /**
* Sets the type of the field to the given type. * 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 * @param arrayLevel the array level
* @return the builder's state after the change * @return the builder's state after the change
*/ */