Skip to content

Commit ad582c9

Browse files
committed
1 parent cd9d5eb commit ad582c9

File tree

10 files changed

+48
-42
lines changed

10 files changed

+48
-42
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
gradlew eol=lf
2+
*.sh eol=lf
3+
*.bat eol=crlf

.github/workflows/gradle.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
ACTUAL_REF: ${{ github.ref }}
2222

23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424

2525
- name: Get publishing variables
2626
id: publish_vars
@@ -34,15 +34,15 @@ jobs:
3434
needs: publish_vars
3535

3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838

39-
- uses: actions/setup-java@v4
39+
- uses: actions/setup-java@v5
4040
with:
4141
distribution: temurin
4242
java-version: 11
4343

4444
- name: Setup Gradle
45-
uses: gradle/actions/setup-gradle@v3
45+
uses: gradle/actions/setup-gradle@v5
4646

4747
- name: Prepare Gradle Arguments
4848
run: |
@@ -58,12 +58,12 @@ jobs:
5858
- name: Build with Gradle
5959
run: ./gradlew $GRADLE_ARGS
6060

61-
- uses: actions/upload-artifact@v4
61+
- uses: actions/upload-artifact@v5
6262
with:
6363
name: app-users
6464
path: build/libs/app-users.jar
6565

66-
- uses: codecov/codecov-action@v4
66+
- uses: codecov/codecov-action@v5
6767
continue-on-error: true
6868
with:
6969
token: ${{ secrets.CODECOV_TOKEN }}
@@ -92,17 +92,17 @@ jobs:
9292
runs-on: ubuntu-latest
9393
needs: build
9494
steps:
95-
- uses: actions/checkout@v4
95+
- uses: actions/checkout@v5
9696

97-
- uses: actions/setup-java@v4
97+
- uses: actions/setup-java@v5
9898
with:
9999
distribution: temurin
100100
java-version: 11
101101

102102
- name: Setup Gradle
103-
uses: gradle/actions/setup-gradle@v3
103+
uses: gradle/actions/setup-gradle@v5
104104

105-
- uses: actions/download-artifact@v4
105+
- uses: actions/download-artifact@v6
106106
with:
107107
name: app-users
108108
path: build/libs/
@@ -123,7 +123,7 @@ jobs:
123123
SLACK_ICON: https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png
124124
SLACK_COLOR: ${{ job.status }}
125125

126-
- uses: actions/upload-artifact@v4
126+
- uses: actions/upload-artifact@v5
127127
if: always() && steps.selenium.conclusion != 'skipped'
128128
with:
129129
name: 'ui-test-report-${{ matrix.suite }}'

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919

@@ -30,7 +30,7 @@ jobs:
3030
PREVIOS_RELEASE_TAG: ${{ steps.get_previous_release_tag.outputs.previous_release_tag }}
3131
OUTPUT_FILE: changelog.md
3232

33-
- uses: actions/upload-artifact@v4
33+
- uses: actions/upload-artifact@v5
3434
with:
3535
name: changelog
3636
path: changelog.md
@@ -41,15 +41,15 @@ jobs:
4141
needs: release_notes
4242

4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545

46-
- uses: actions/setup-java@v4
46+
- uses: actions/setup-java@v5
4747
with:
4848
distribution: temurin
4949
java-version: 11
5050

5151
- name: Setup Gradle
52-
uses: gradle/actions/setup-gradle@v3
52+
uses: gradle/actions/setup-gradle@v5
5353

5454
- name: Get publishing variables
5555
id: publish_vars
@@ -66,7 +66,7 @@ jobs:
6666
run: ./gradlew publish -Pcom.enonic.xp.app.production=true -PrepoKey=${{ steps.publish_vars.outputs.repo }} -PrepoUser=ci -PrepoPassword=${{ secrets.ARTIFACTORY_PASSWORD }}
6767

6868
- name: Download changelog
69-
uses: actions/download-artifact@v4
69+
uses: actions/download-artifact@v6
7070
with:
7171
name: changelog
7272

build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ app {
1717
devSourcePaths += file( "$rootDir/../lib-admin-ui/src/main/resources" )
1818
}
1919

20-
sourceCompatibility = JavaVersion.VERSION_11
21-
targetCompatibility = sourceCompatibility
20+
java {
21+
toolchain {
22+
languageVersion = JavaLanguageVersion.of(11)
23+
}
24+
}
2225

2326
configurations {
2427
devResources {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# Project settings
33
#
4-
version=7.15.5-SNAPSHOT
4+
version=7.16.0-SNAPSHOT
55
libAdminUiVersion=5.0.3
66

77
systemProp.org.gradle.internal.http.connectionTimeout=120000

gradle/wrapper/gradle-wrapper.jar

311 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -55,7 +57,7 @@
5557
# Darwin, MinGW, and NonStop.
5658
#
5759
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
60+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5961
# within the Gradle project.
6062
#
6163
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -84,7 +86,7 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
8890

8991
# Use the maximum available, or set MAX_FD != -1 to use that value.
9092
MAX_FD=maximum
@@ -112,7 +114,7 @@ case "$( uname )" in #(
112114
NONSTOP* ) nonstop=true ;;
113115
esac
114116

115-
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
117+
CLASSPATH="\\\"\\\""
116118

117119

118120
# Determine the Java command to use to start the JVM.
@@ -203,15 +205,15 @@ fi
203205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
204206

205207
# Collect all arguments for the java command:
206-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
207209
# and any embedded shellness will be escaped.
208210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
209211
# treated as '${Hostname}' itself on the command line.
210212

211213
set -- \
212214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
213215
-classpath "$CLASSPATH" \
214-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
215217
"$@"
216218

217219
# Stop when "xargs" is not available.

gradlew.bat

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################
@@ -68,11 +70,11 @@ goto fail
6870
:execute
6971
@rem Setup the command line
7072

71-
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73+
set CLASSPATH=
7274

7375

7476
@rem Execute Gradle
75-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
77+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
7678

7779
:end
7880
@rem End local scope for the variables with windows NT shell

package-lock.json

Lines changed: 10 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)