Skip to content

Commit 75d1f42

Browse files
committed
build(deps): update to Payara 6.2023.8 #9793
1 parent 1c356b4 commit 75d1f42

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

doc/sphinx-guides/source/developers/classic-dev-env.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,15 @@ On Linux, install ``jq`` from your package manager or download a binary from htt
9191
Install Payara
9292
~~~~~~~~~~~~~~
9393

94-
Payara 6.2023.7 or higher is required.
94+
Payara 6.2023.8 or higher is required.
9595

9696
To install Payara, run the following commands:
9797

9898
``cd /usr/local``
9999

100-
``sudo curl -O -L https://nexus.payara.fish/repository/payara-community/fish/payara/distributions/payara/6.2023.7/payara-6.2023.7.zip``
100+
``sudo curl -O -L https://nexus.payara.fish/repository/payara-community/fish/payara/distributions/payara/6.2023.8/payara-6.2023.8.zip``
101101

102-
``sudo unzip payara-6.2023.7.zip``
102+
``sudo unzip payara-6.2023.8.zip``
103103

104104
``sudo chown -R $USER /usr/local/payara6``
105105

doc/sphinx-guides/source/installation/prerequisites.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ On RHEL/derivative you can make Java 11 the default with the ``alternatives`` co
4444
Payara
4545
------
4646

47-
Payara 6.2023.7 is recommended. Newer versions might work fine. Regular updates are recommended.
47+
Payara 6.2023.8 is recommended. Newer versions might work fine. Regular updates are recommended.
4848

4949
Installing Payara
5050
=================
@@ -55,8 +55,8 @@ Installing Payara
5555

5656
- Download and install Payara (installed in ``/usr/local/payara6`` in the example commands below)::
5757

58-
# wget https://nexus.payara.fish/repository/payara-community/fish/payara/distributions/payara/6.2023.7/payara-6.2023.7.zip
59-
# unzip payara-6.2023.7.zip
58+
# wget https://nexus.payara.fish/repository/payara-community/fish/payara/distributions/payara/6.2023.8/payara-6.2023.8.zip
59+
# unzip payara-6.2023.8.zip
6060
# mv payara6 /usr/local
6161

6262
If nexus.payara.fish is ever down for maintenance, Payara distributions are also available from https://repo1.maven.org/maven2/fish/payara/distributions/payara/

downloads/download.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
curl -L -O https://nexus.payara.fish/repository/payara-community/fish/payara/distributions/payara/6.2023.7/payara-6.2023.7.zip
2+
curl -L -O https://nexus.payara.fish/repository/payara-community/fish/payara/distributions/payara/6.2023.8/payara-6.2023.8.zip
33
curl -L -O https://archive.apache.org/dist/lucene/solr/8.11.1/solr-8.11.1.tgz
44
curl -L -O https://search.maven.org/remotecontent?filepath=org/jboss/weld/weld-osgi-bundle/2.2.10.Final/weld-osgi-bundle-2.2.10.Final-glassfish4.jar
55
curl -s -L http://sourceforge.net/projects/schemaspy/files/schemaspy/SchemaSpy%205.0.0/schemaSpy_5.0.0.jar/download > schemaSpy_5.0.0.jar

modules/dataverse-parent/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
<argLine>-Duser.timezone=${project.timezone} -Dfile.encoding=${project.build.sourceEncoding} -Duser.language=${project.language} -Duser.region=${project.region}</argLine>
149149

150150
<!-- Major system components and dependencies -->
151-
<payara.version>6.2023.7</payara.version>
151+
<payara.version>6.2023.8</payara.version>
152152
<postgresql.version>42.5.1</postgresql.version>
153153
<solr.version>8.11.1</solr.version>
154154
<aws.version>1.12.290</aws.version>

scripts/vagrant/setup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ SOLR_USER=solr
5151
echo "Ensuring Unix user '$SOLR_USER' exists"
5252
useradd $SOLR_USER || :
5353
DOWNLOAD_DIR='/dataverse/downloads'
54-
PAYARA_ZIP="$DOWNLOAD_DIR/payara-6.2023.7.zip"
54+
PAYARA_ZIP="$DOWNLOAD_DIR/payara-6.2023.8.zip"
5555
SOLR_TGZ="$DOWNLOAD_DIR/solr-8.11.1.tgz"
5656
if [ ! -f $PAYARA_ZIP ] || [ ! -f $SOLR_TGZ ]; then
5757
echo "Couldn't find $PAYARA_ZIP or $SOLR_TGZ! Running download script...."

0 commit comments

Comments
 (0)