Skip to content

Commit 29f8150

Browse files
committed
bump dependencies, bump gradle to 8.7
1 parent f75f3b6 commit 29f8150

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Version 2.4 adds support for `.cif` input and contains a special profile for pre
2020

2121
### Requirements
2222

23-
* Java 8 to 20
23+
* Java 11 to 21
2424
* PyMOL 1.7 (or newer) for viewing visualizations (optional)
2525

2626
P2Rank is tested on Linux, macOS, and Windows.

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -164,20 +164,20 @@ tasks.named("dependencyUpdates").configure {
164164

165165
dependencies {
166166

167-
implementation 'org.apache.groovy:groovy:4.0.20'
167+
implementation 'org.apache.groovy:groovy:4.0.21'
168168

169169
implementation 'org.codehaus.gpars:gpars:1.2.1'
170170
implementation 'org.apache.commons:commons-lang3:3.14.0'
171171
implementation 'org.apache.commons:commons-math3:3.6.1'
172-
implementation 'commons-io:commons-io:2.16.0'
172+
implementation 'commons-io:commons-io:2.16.1'
173173
implementation 'com.google.guava:guava:33.1.0-jre'
174174
implementation 'com.google.code.gson:gson:2.10.1'
175175
implementation 'com.univocity:univocity-parsers:2.9.1' // csv parser
176176
implementation 'org.apache.commons:commons-csv:1.10.0'
177177
implementation 'org.zeroturnaround:zt-zip:1.17'
178178
implementation 'org.apache.commons:commons-compress:1.26.1'
179179
implementation 'org.tukaani:xz:1.9'
180-
implementation 'com.github.luben:zstd-jni:1.5.6-1'
180+
implementation 'com.github.luben:zstd-jni:1.5.6-2'
181181
implementation 'com.github.dpaukov:combinatoricslib3:3.4.0'
182182

183183
implementation 'org.slf4j:slf4j-api:1.7.36'

distro/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Version 2.4 adds support for `.cif` input and contains a special profile for pre
2020

2121
### Requirements
2222

23-
* Java 8 to 20
23+
* Java 11 to 22
2424
* PyMOL 1.7 (or newer) for viewing visualizations (optional)
2525

2626
P2Rank is tested on Linux, macOS, and Windows.

gradle/wrapper/gradle-wrapper.properties

+1-1
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.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew.bat

+10-10
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
4343
%JAVA_EXE% -version >NUL 2>&1
4444
if %ERRORLEVEL% equ 0 goto execute
4545

46-
echo.
47-
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
48-
echo.
49-
echo Please set the JAVA_HOME variable in your environment to match the
50-
echo location of your Java installation.
46+
echo. 1>&2
47+
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
48+
echo. 1>&2
49+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
50+
echo location of your Java installation. 1>&2
5151

5252
goto fail
5353

@@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
5757

5858
if exist "%JAVA_EXE%" goto execute
5959

60-
echo.
61-
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
62-
echo.
63-
echo Please set the JAVA_HOME variable in your environment to match the
64-
echo location of your Java installation.
60+
echo. 1>&2
61+
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
62+
echo. 1>&2
63+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
64+
echo location of your Java installation. 1>&2
6565

6666
goto fail
6767

misc/tutorials/development-notes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
## Upgrade gradle weapper
3+
## Upgrade gradle wrapper
44

55
~~~sh
66
./gradlew wrapper --gradle-version latest

0 commit comments

Comments
 (0)