Skip to content

Commit

Permalink
Version 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jvenhuizen committed Sep 12, 2023
1 parent f08c370 commit 6614b01
Show file tree
Hide file tree
Showing 5 changed files with 222 additions and 13 deletions.
16 changes: 12 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ plugins {
distribution
}


group = "io.sharptree"
version = "1.1.1"
version = "1.1.2"

val vendor = "Sharptree"
val product = "zebra-label"
val distro = "zebra-label"

project.version = "1.1.1"
project.version = "1.1.2"

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

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

tasks.assemble {
finalizedBy("fixzip")
}

tasks.jar {
manifest {
attributes(
Expand All @@ -176,7 +179,7 @@ dependencies {
/*
* Library used for validating host names and IP addresses.
*/
implementation("com.google.guava:guava:31.0.1-jre")
implementation("com.google.guava:guava:31.1-jre")

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

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

/**
* Semantic versioning for checking script versions.
*/
compileOnly("com.google.code.gson:gson:2.2.4")

/**
* Semantic versioning for checking script versions.
*/
Expand Down
Loading

0 comments on commit 6614b01

Please sign in to comment.