mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-14 19:49:22 +01:00
fix: proper use of git version
This commit is contained in:
parent
8f6f5615ce
commit
df2f0df8d6
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue