Skip to content

Commit 89b657d

Browse files
committed
fix: proper use of git version
1 parent 8f6f561 commit 89b657d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
archivesBaseName = 'lll'
7-
version = gitVersion().split('-').getAt(0).replace('dirty', '')
7+
version = versionDetails().lastTag
88

99
java {
1010
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
@@ -17,7 +17,7 @@ repositories {
1717
}
1818

1919
dependencies {
20-
implementation 'org.ow2.asm:asm-commons:9.5'
21-
implementation 'org.ow2.asm:asm-util:9.5'
20+
implementation 'org.ow2.asm:asm-commons:9.7'
21+
implementation 'org.ow2.asm:asm-util:9.7'
2222
implementation 'org.apache.logging.log4j:log4j-api:2.20.0'
2323
}

src/main/java/ftbsc/lll/proxies/impl/FieldProxy.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public Builder setType(Class<?> clazz) {
100100

101101
/**
102102
* Sets the type of the field to the given type.
103-
* @param fqn the fully qualified name of the parameter type
103+
* @param fqn the fully qualified name of the parameter type
104104
* @param arrayLevel the array level
105105
* @return the builder's state after the change
106106
*/

0 commit comments

Comments
 (0)