fix: proper use of git version

This commit is contained in:
zaaarf 2024-05-09 21:20:09 +02:00
parent 8f6f5615ce
commit df2f0df8d6
No known key found for this signature in database
GPG key ID: 102E445F4C3F829B
2 changed files with 2 additions and 2 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

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
*/ */