Skip to content

Commit 96ebe83

Browse files
authored
Merge pull request #26011 from dmatej/fixdeployment9
Merge of main to 9.0 + fixed deployment
2 parents 0d713fc + aae2b6b commit 96ebe83

615 files changed

Lines changed: 14577 additions & 23732 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Build with Maven
2525
# qa skips documentation - we check it on Jenkins CI
2626
# We skip checkstyle too - we check it on Jenkins CI
27-
run: mvn -B -e -ntp install -Pqa '-Dcheckstyle.skip=true'
27+
run: mvn -B -e -ntp install -Pqa,snapshots '-Dcheckstyle.skip=true'
2828
- name: Upload server logs
2929
uses: actions/upload-artifact@v4
3030
if: failure()

.github/workflows/build-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
- name: Build with Maven
2323
# qa skips documentation - we check it on Jenkins CI
2424
# We skip checkstyle too - we check it on Jenkins CI
25-
run: mvn -B -e -ntp install -Pqa '-Dcheckstyle.skip=true' -Pfastest
25+
run: mvn -B -e -ntp install -Pqa,snapshots '-Dcheckstyle.skip=true' -Pfastest
2626
- name: Test GF Starts
27-
run: mvn -B -e -ntp install '-Dcheckstyle.skip=true' -pl :glassfish-itest-tools
27+
run: mvn -B -e -ntp install -Psnapshots '-Dcheckstyle.skip=true' -pl :glassfish-itest-tools
2828
- name: Upload server logs
2929
uses: actions/upload-artifact@v4
3030
if: failure()

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build with Maven
2323
# qa skips documentation - we check it on Jenkins CI
2424
# We skip checkstyle too - we check it on Jenkins CI
25-
run: mvn -B -e -ntp install -Pqa '-Dcheckstyle.skip=true'
25+
run: mvn -B -e -ntp install '-Pqa,snapshots' '-Dcheckstyle.skip=true'
2626
- name: Upload server logs
2727
uses: actions/upload-artifact@v4
2828
if: failure()

Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, 2025 Contributors to the Eclipse Foundation
2+
* Copyright (c) 2022, 2026 Contributors to the Eclipse Foundation
33
* Copyright (c) 2018, 2021 Oracle and/or its affiliates. All rights reserved.
44
*
55
* This program and the accompanying materials are made available under the
@@ -329,10 +329,10 @@ pipeline {
329329
timeout(time: 1, unit: 'HOURS') {
330330
sh '''
331331
# Validate the structure in all submodules (especially version ids)
332-
mvn -V -B -e -fae clean validate -Ptck,set-version-id
332+
mvn -V -B -e -fae clean validate -Ptck,set-version-id,snapshots
333333
'''
334334
sh '''
335-
mvn -B -e install -Pfastest,ci -T4C
335+
mvn -B -e install -Pfastest,ci,snapshots -T4C
336336
'''
337337
sh '''
338338
mvn -B -e clean
@@ -378,7 +378,7 @@ pipeline {
378378
dumpSysInfo()
379379
timeout(time: 4, unit: 'HOURS') {
380380
sh '''
381-
mvn -B -e clean verify -Pqa,ci,ci-main-tests
381+
mvn -B -e clean verify -Pqa,ci,ci-main-tests,snapshots
382382
'''
383383
}
384384
} finally {

appserver/admin/backup/src/main/java/com/sun/enterprise/backup/StringHelper.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static String get(String s)
5050
* Convenience method which calls get(String, Object[])
5151
* @return the String from LocalStrings or the supplied String if it doesn't exist --
5252
* using the one supplied argument
53-
* @see get(String, Object[])
53+
* @see #get(String, Object[])
5454
*/
5555
static String get(String s, Object o)
5656
{
@@ -61,7 +61,7 @@ static String get(String s, Object o)
6161
* Convenience method which calls get(String, Object[])
6262
* @return the String from LocalStrings or the supplied String if it doesn't exist --
6363
* using the two supplied arguments
64-
* @see get(String, Object[])
64+
* @see #get(String, Object[])
6565
*/
6666
static String get(String s, Object o1, Object o2)
6767
{
@@ -72,7 +72,7 @@ static String get(String s, Object o1, Object o2)
7272
* Convenience method which calls get(String, Object[])
7373
* @return the String from LocalStrings or the supplied String if it doesn't exist --
7474
* using the three supplied arguments
75-
* @see get(String, Object[])
75+
* @see #get(String, Object[])
7676
*/
7777
static String get(String s, Object o1, Object o2, Object o3)
7878
{

appserver/admingui/common/src/main/help/en/help/idx-3.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!--
22
3+
Copyright (c) 2026 Contributors to the Eclipse Foundation.
34
Copyright (c) 2005, 2018 Oracle and/or its affiliates. All rights reserved.
45
56
This program and the accompanying materials are made available under the
@@ -52,7 +53,6 @@ <h2>P</h2>
5253
<dd>message security provider configurations, <a href="ref-messagesecurityproviderconfigprops.html#indexterm-235">Properties Specific to Message Security Provider Configurations</a></dd>
5354
<dd>PAM realm, <a href="ref-pamrealmprop.html#indexterm-214">Properties Specific to the PamRealm Class</a></dd>
5455
<dd>predefined system, <a href="ref-preconfiguredprops.html#indexterm-152">Predefined System Properties</a></dd>
55-
<dd>Solaris realm, <a href="ref-solarisrealmprop.html#indexterm-212">Properties Specific to the SolarisRealm Class</a></dd>
5656
<dd>system (reference), <a href="ref-systemproperties.html#indexterm-149">System Properties</a></dd>
5757
<dd>system (task), <a href="task-systemproperties.html#indexterm-18">To Manage System Properties</a></dd>
5858
</dl>
@@ -133,9 +133,6 @@ <h2>P</h2>
133133
</dd>
134134
</dl>
135135
<dl>
136-
<dd>Solaris realm, properties, <a href="ref-solarisrealmprop.html#indexterm-211">Properties Specific to the SolarisRealm Class</a></dd>
137-
</dl>
138-
<dl>
139136
<dd>SSL settings<dl>
140137
<dd>JMX connector (reference), <a href="ref-jmxconnectorssledit.html#indexterm-240">SSL</a></dd>
141138
<dd>JMX connector (task), <a href="task-jmxconnectorssledit.html#indexterm-117">To Edit SSL Settings for the JMX Connector</a></dd>

appserver/admingui/common/src/main/help/en/help/index.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!--
22
3+
Copyright (c) 2026 Contributors to the Eclipse Foundation.
34
Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
45
56
This program and the accompanying materials are made available under the
@@ -299,7 +300,6 @@
299300
<indexitem text="message security provider configurations" target="ref-messagesecurityproviderconfigprops"></indexitem>
300301
<indexitem text="PAM realm" target="ref-pamrealmprop"></indexitem>
301302
<indexitem text="predefined system" target="ref-preconfiguredprops"></indexitem>
302-
<indexitem text="Solaris realm" target="ref-solarisrealmprop"></indexitem>
303303
<indexitem text="system (reference)" target="ref-systemproperties"></indexitem>
304304
<indexitem text="system (task)" target="task-systemproperties"></indexitem>
305305
</indexitem>
@@ -343,9 +343,6 @@
343343
<indexitem text="viewing (reference)" target="ref-logviewer"></indexitem>
344344
<indexitem text="viewing (task)" target="task-logviewer"></indexitem>
345345
</indexitem>
346-
<indexitem text="Solaris realm">
347-
<indexitem text="properties" target="ref-solarisrealmprop"></indexitem>
348-
</indexitem>
349346
<indexitem text="SSL settings">
350347
<indexitem text="JMX connector (reference)" target="ref-jmxconnectorssledit"></indexitem>
351348
<indexitem text="JMX connector (task)" target="task-jmxconnectorssledit"></indexitem>

appserver/admingui/common/src/main/help/en/help/ref-ldaprealmprop.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!--
22
3+
Copyright (c) 2026 Contributors to the Eclipse Foundation.
34
Copyright (c) 2005, 2018 Oracle and/or its affiliates. All rights reserved.
45
56
This program and the accompanying materials are made available under the
@@ -24,7 +25,7 @@ <h4><a id="sthref206" name="sthref206"></a><a id="sthref207" name="sthref207"></
2425
<dl>
2526
<dt>JAAS Context</dt>
2627
<dd>
27-
<p>The JAAS (Java Authentication and Authorization Service) context (the identifier for the login module to use for this realm). The only valid value is <code>solarisRealm</code>.</p>
28+
<p>The JAAS (Java Authentication and Authorization Service) context (the identifier for the login module to use for this realm). The only valid value is <code>ldapRealm</code>.</p>
2829
</dd>
2930
<dt>Directory</dt>
3031
<dd>

appserver/admingui/common/src/main/help/en/help/ref-realmedit.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!--
22
3+
Copyright (c) 2026 Contributors to the Eclipse Foundation.
34
Copyright (c) 2005, 2018 Oracle and/or its affiliates. All rights reserved.
45
56
This program and the accompanying materials are made available under the
@@ -52,9 +53,6 @@ <h4><a id="sthref199" name="sthref199"></a>Edit Realm</h4>
5253
<p><a href="ref-ldaprealmprop.html">Properties Specific to the <code>LDAPRealm</code> Class</a></p>
5354
</li>
5455
<li>
55-
<p><a href="ref-solarisrealmprop.html">Properties Specific to the <code>SolarisRealm</code> Class</a></p>
56-
</li>
57-
<li>
5856
<p><a href="ref-pamrealmprop.html">Properties Specific to the <code>PamRealm</code> Class</a></p>
5957
</li>
6058
</ul>

appserver/admingui/common/src/main/help/en/help/ref-realmsnew.html

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!--
22
3+
Copyright (c) 2026 Contributors to the Eclipse Foundation.
34
Copyright (c) 2005, 2018 Oracle and/or its affiliates. All rights reserved.
45
56
This program and the accompanying materials are made available under the
@@ -79,14 +80,6 @@ <h4><a id="sthref198" name="sthref198"></a>New Realm</h4>
7980
</td>
8081
</tr>
8182
<tr align="left" valign="top">
82-
<td align="left" id="r6c1-t6" headers="r1c1-t6">
83-
<p><code>solaris</code></p>
84-
</td>
85-
<td align="left" headers="r6c1-t6 r1c2-t6">
86-
<p><code>com.sun.enterprise.security.auth.realm.solaris.SolarisRealm</code></p>
87-
</td>
88-
</tr>
89-
<tr align="left" valign="top">
9083
<td align="left" id="r7c1-t6" headers="r1c1-t6">
9184
<p><code>PAM</code></p>
9285
</td>
@@ -117,9 +110,6 @@ <h4><a id="sthref198" name="sthref198"></a>New Realm</h4>
117110
<p><a href="ref-ldaprealmprop.html">Properties Specific to the <code>LDAPRealm</code> Class</a></p>
118111
</li>
119112
<li>
120-
<p><a href="ref-solarisrealmprop.html">Properties Specific to the <code>SolarisRealm</code> Class</a></p>
121-
</li>
122-
<li>
123113
<p><a href="ref-pamrealmprop.html">Properties Specific to the <code>PamRealm</code> Class</a></p>
124114
</li>
125115
</ul>

0 commit comments

Comments
 (0)