Skip to content

Commit 6614b01

Browse files
committed
Version 1.1.2
1 parent f08c370 commit 6614b01

File tree

5 files changed

+222
-13
lines changed

5 files changed

+222
-13
lines changed

build.gradle.kts

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ plugins {
55
distribution
66
}
77

8-
98
group = "io.sharptree"
10-
version = "1.1.1"
9+
version = "1.1.2"
1110

1211
val vendor = "Sharptree"
1312
val product = "zebra-label"
1413
val distro = "zebra-label"
1514

16-
project.version = "1.1.1"
15+
project.version = "1.1.2"
1716

1817
tasks.compileJava {
1918
sourceCompatibility = "1.8"
@@ -154,6 +153,10 @@ tasks.register<Jar>("jar-web") {
154153

155154
tasks.getByName("assemble").dependsOn("jar-web")
156155

156+
tasks.assemble {
157+
finalizedBy("fixzip")
158+
}
159+
157160
tasks.jar {
158161
manifest {
159162
attributes(
@@ -176,7 +179,7 @@ dependencies {
176179
/*
177180
* Library used for validating host names and IP addresses.
178181
*/
179-
implementation("com.google.guava:guava:31.0.1-jre")
182+
implementation("com.google.guava:guava:31.1-jre")
180183

181184
/*
182185
* The javax.servlet-api is required to compile DataBean classes, but is otherwise provided by WebSphere / WebLogic.
@@ -199,6 +202,11 @@ dependencies {
199202

200203
compileOnly("com.google.code.gson:gson:2.2.4")
201204

205+
/**
206+
* Semantic versioning for checking script versions.
207+
*/
208+
compileOnly("com.google.code.gson:gson:2.2.4")
209+
202210
/**
203211
* Semantic versioning for checking script versions.
204212
*/

0 commit comments

Comments
 (0)