Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
git clone --branch=master https://github.com/vmware/singleton.git server
cd $GITHUB_WORKSPACE/server/g11n-ws && ./gradlew build -x test
find $GITHUB_WORKSPACE/server/publish/ -name 'singleton-[0~9]*.jar' -exec mv '{}' $GITHUB_WORKSPACE/server/publish/singleton.jar \;
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: singleton-service
path: ./server/publish/singleton.jar
Expand All @@ -122,7 +122,7 @@ jobs:
with:
distribution: 'adopt-openj9'
java-version: '8'
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: singleton-service
- name: Smoke Test
Expand Down
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2019-2021 VMware, Inc.
* Copyright 2019-2025 VMware, Inc.
* SPDX-License-Identifier: EPL-2.0
*/
apply plugin: 'java'
Expand Down Expand Up @@ -37,9 +37,7 @@ dependencies {
compile group: 'javax.servlet.jsp', name: 'javax.servlet.jsp-api', version: '2.3.1'
compile group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
compile group: 'org.apache.taglibs', name: 'taglibs-standard-impl', version: '1.2.5'
compile("com.googlecode.json-simple:json-simple:1.1.1") {
exclude group: 'junit'
}
compile group: 'org.json', name: 'json', version: '20250107'
compile group: 'com.vmware.singleton', name: 'singleton-i18n-patterns-core', version: '[0.5.1,)'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.30'
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.30'
Expand Down
Loading