From da974c56b681f36d4f87694eda7d0c242f10318a Mon Sep 17 00:00:00 2001 From: omar Date: Thu, 9 Mar 2023 15:55:33 +0100 Subject: [PATCH 1/4] chore: add mirrors --- .mvn/local-settings.xml | 24 ++++++++++++++++++++++++ .mvn/maven.config | 1 + 2 files changed, 25 insertions(+) create mode 100644 .mvn/local-settings.xml create mode 100644 .mvn/maven.config diff --git a/.mvn/local-settings.xml b/.mvn/local-settings.xml new file mode 100644 index 000000000..259563841 --- /dev/null +++ b/.mvn/local-settings.xml @@ -0,0 +1,24 @@ + + + + eis-public-repo-unblocker + eis-public-repo + + http://maven.iais.fraunhofer.de/artifactory/eis-ids-public + + + eis-snapshot-repo-unblocker + eis-snapshot-repo + + http://maven.iais.fraunhofer.de/artifactory/eis-ids-snapshot + + + eis-ids-public-unblocker + eis-ids-public + + http://maven.iais.fraunhofer.de/artifactory/eis-ids-public + + + diff --git a/.mvn/maven.config b/.mvn/maven.config new file mode 100644 index 000000000..d97a69966 --- /dev/null +++ b/.mvn/maven.config @@ -0,0 +1 @@ +--settings ./.mvn/local-settings.xml From 7d8da48b2fa0345598c1da2a3365e79d60fa46fc Mon Sep 17 00:00:00 2001 From: omar Date: Thu, 9 Mar 2023 17:48:05 +0100 Subject: [PATCH 2/4] chore: add new line --- .mvn/maven.config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.mvn/maven.config b/.mvn/maven.config index d97a69966..7a34b434c 100644 --- a/.mvn/maven.config +++ b/.mvn/maven.config @@ -1 +1,2 @@ ---settings ./.mvn/local-settings.xml +--settings +./.mvn/local-settings.xml From 4cdab5eccf4310a0db66628721df69f9d67408ba Mon Sep 17 00:00:00 2001 From: omar Date: Thu, 9 Mar 2023 18:01:24 +0100 Subject: [PATCH 3/4] chore: increase timeout limit --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 075f40bc9..bc2f1cc65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: style: needs: [setup] - timeout-minutes: 5 + timeout-minutes: 10 runs-on: ubuntu-latest strategy: fail-fast: false @@ -49,7 +49,7 @@ jobs: static-code-analysis: needs: [setup, style] - timeout-minutes: 5 + timeout-minutes: 10 runs-on: ubuntu-latest strategy: fail-fast: false @@ -93,7 +93,7 @@ jobs: key: ${{ runner.os }}-${{ needs.setup.outputs.branch_name }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-${{ needs.setup.outputs.branch_name }}-m2- - name: Unit- and Integrationtests - run: mvn -B -U verify --file pom.xml -Prelease + run: mvn clean -B -U verify --file pom.xml -Prelease mutation-tests: needs: [setup, unit-and-integration-tests] From a0fd033a00e52b2b2b794a68c8e3d3e2c3189235 Mon Sep 17 00:00:00 2001 From: omar Date: Thu, 9 Mar 2023 18:11:25 +0100 Subject: [PATCH 4/4] chore: increase timeout limit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc2f1cc65..4a862f4e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: style: needs: [setup] - timeout-minutes: 10 + timeout-minutes: 30 runs-on: ubuntu-latest strategy: fail-fast: false