forked from piranhacloud/piranha
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'current' into issue-4191
- Loading branch information
Showing
8 changed files
with
69 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,10 +26,10 @@ jobs: | |
java-version: 21 | ||
- name: Build with Maven | ||
run: | | ||
mvn -B -DskipTests -DskipITs -ntp -T 1 install site | ||
mvn -B -DskipTests -DskipITs -DstagingDirectory=$PWD/target/staging -ntp -T 1 install site site:stage | ||
rm -rf piranha-website/snapshot || true | ||
mkdir -p piranha-website/snapshot || true | ||
cp -R target/site/* piranha-website/snapshot/ | ||
cp -R target/staging/* piranha-website/snapshot/ | ||
cd piranha-website | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Automated publish" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,22 @@ | |
/** | ||
* This module delivers the ServletContainerInitializer extension. | ||
* | ||
* | ||
* <p> | ||
* The following property can be used to influence the workings of this module. | ||
* </p> | ||
* <table> | ||
* <tr> | ||
* <th>Property</th> | ||
* <th>Notes</th> | ||
* </tr> | ||
* <tr> | ||
* <td>cloud.piranha.extension.scinitializer.ServletContainerInitializerExtension.enabled</td> | ||
* <td>true to enable (default), false to disable</td> | ||
* </tr> | ||
* <caption>Configurable properties</caption> | ||
* </table> | ||
* | ||
* @author Manfred Riem ([email protected]) | ||
*/ | ||
module cloud.piranha.extension.scinitializer { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters