Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing - removed repo #1245

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Build with Maven
run: >-
mvn verify --show-version --errors --batch-mode --no-transfer-progress -Pdocs
mvn verify --show-version --errors --batch-mode -Pdocs
-Dgh_user=${{ github.actor }} -Dgh_token=${{ secrets.GITHUB_TOKEN }}

build-all:
Expand Down Expand Up @@ -88,13 +88,13 @@ jobs:
- name: Build with Maven (Linux)
if: matrix.os == 'ubuntu-latest' && matrix.jdk <= 17
run: >-
mvn verify --show-version --errors --batch-mode --no-transfer-progress -Pdocs
mvn verify --show-version --errors --batch-mode -Pdocs
-Dgh_user=${{ github.actor }} -Dgh_token=${{ secrets.GITHUB_TOKEN }}

- name: Build with Maven (non-Linux or JDK > 17)
if: matrix.os != 'ubuntu-latest' || matrix.jdk > 17
run: >-
mvn verify --show-version --errors --batch-mode --no-transfer-progress -Pdocs
mvn verify --show-version --errors --batch-mode -Pdocs
-Pskip_jakarta_ee_tests

- name: Archive test run logs
Expand Down
2 changes: 1 addition & 1 deletion .jenkins.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ pipeline {
stage('Build') {
steps {
echo 'Building'
sh 'mvn clean verify --show-version --errors --batch-mode --no-transfer-progress -Pdocs \
sh 'mvn clean verify --show-version --errors --batch-mode -Pdocs \
-Dmaven.test.failure.ignore=true -Pskip_jakarta_ee_tests'
}
post {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private static final class SecurityManagerFactory extends WebIniSecurityManagerF
@Override
protected Map<String, ?> createDefaults(Ini ini, Ini.Section mainSection) {
@SuppressWarnings("unchecked")
Map<String, Filter> defaults = (Map<String, Filter>) super.createDefaults(ini, mainSection);
Map<String, Filter> defaults = null;
try {
// SSL filter must be first because it will trigger an exception if OmniFaces is not available
var sslFilter = new SslFilter();
Expand Down
Loading