This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git. from 4c9a75c Bump asm to 9.0 (maven-plugin-tools-generators) new fd9b178 Add Dependabot config new 953bbad Activate Github Actions new 432a617 Bump junit from 4.13.1 to 4.13.2 new 9f09c69 Bump maven-reporting-exec from 1.4 to 1.5.1 new 4a83ca4 Bump plexus-utils from 3.2.0 to 3.3.0 new c156ef9 Bump maven-shared-utils from 3.2.1 to 3.3.3 new 2522733 Bump actions/cache from v2 to v2.1.4 The 7 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .github/dependabot.yml | 46 ++++++++++++++++++++++++++++++++++++++++ .github/workflows/maven.yml | 51 +++++++++++++++++++++++++++++++++++++++++++++ pom.xml | 8 +++---- 3 files changed, 101 insertions(+), 4 deletions(-) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/maven.yml |
This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git commit fd9b178aec4552d4934b9385d55cc415ff96ecdc Author: Sylwester Lachiewicz <[hidden email]> AuthorDate: Tue Jan 12 23:47:41 2021 +0100 Add Dependabot config --- .github/dependabot.yml | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..29eccbf --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,46 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +version: 2 +updates: +- package-ecosystem: maven + directory: "/" + schedule: + interval: daily + time: '04:00' + open-pull-requests-limit: 10 + ignore: + # ignore Java 8+ dependencies + - dependency-name: org.mockito:mockito-core + versions: + - ">= 3.0" + - dependency-name: org.apache.commons:commons-lang3 + versions: + - ">= 3.9" + - dependency-name: commons-io:commons-io + versions: + - ">= 2.7" + # Ignore Maven 3.2.1+ + - dependency-name: org.apache.maven.plugin-testing:maven-plugin-testing-tools + versions: + - ">=3.2.0" + - dependency-name: org.apache.maven.plugin-testing:maven-plugin-testing-harness + versions: + - ">=3.2.0" +- package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file |
In reply to this post by slachiewicz
This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git commit 953bbadea31ae9c539cb2773f71c47238157b2e5 Author: Sylwester Lachiewicz <[hidden email]> AuthorDate: Tue Jan 12 23:49:34 2021 +0100 Activate Github Actions --- .github/workflows/maven.yml | 51 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..842d3ae --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,51 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +name: GitHub CI + +on: [push, pull_request] + +jobs: + build: + + strategy: + matrix: + os: [ubuntu-20.04, windows-latest, macOS-latest] + java: [7, 8, 11, 16-ea, 17-ea] + fail-fast: false + + runs-on: ${{ matrix.os }} + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Cache local Maven repository + uses: actions/cache@v2 + with: + path: ~/.m2/repository + key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} + restore-keys: | + ${{ runner.os }}-maven- + + - name: Set up JDK + uses: actions/setup-java@v1 + with: + java-version: ${{ matrix.java }} + + - name: Build with Maven + run: mvn verify -e -B -V -P run-its |
In reply to this post by slachiewicz
This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git commit 432a6175f6aa9630ce24fbf68715632a928d6f72 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Mon Feb 15 04:27:39 2021 +0000 Bump junit from 4.13.1 to 4.13.2 Bumps [junit](https://github.com/junit-team/junit4) from 4.13.1 to 4.13.2. - [Release notes](https://github.com/junit-team/junit4/releases) - [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.13.1.md) - [Commits](https://github.com/junit-team/junit4/compare/r4.13.1...r4.13.2) Signed-off-by: dependabot[bot] <[hidden email]> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dff7f48..9b05be5 100644 --- a/pom.xml +++ b/pom.xml @@ -185,7 +185,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>4.13.1</version> + <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> |
In reply to this post by slachiewicz
This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git commit 9f09c69dda7bdee5e7da9567a2d87a99f9b73fa3 Author: Sylwester Lachiewicz <[hidden email]> AuthorDate: Sun Jan 31 00:09:07 2021 +0100 Bump maven-reporting-exec from 1.4 to 1.5.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9b05be5..f83ef3c 100644 --- a/pom.xml +++ b/pom.xml @@ -140,7 +140,7 @@ <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-exec</artifactId> - <version>1.4</version> + <version>1.5.1</version> </dependency> <dependency> |
In reply to this post by slachiewicz
This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git commit 4a83ca43692951d5cb05e219f5946166be3e2ca5 Author: Sylwester Lachiewicz <[hidden email]> AuthorDate: Sun Jan 31 00:09:25 2021 +0100 Bump plexus-utils from 3.2.0 to 3.3.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f83ef3c..b51fddd 100644 --- a/pom.xml +++ b/pom.xml @@ -161,7 +161,7 @@ <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> - <version>3.2.0</version> + <version>3.3.0</version> </dependency> <!-- misc --> |
In reply to this post by slachiewicz
This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git commit c156ef99dd55556fea89510e477695830fb85070 Author: Sylwester Lachiewicz <[hidden email]> AuthorDate: Sun Jan 31 00:09:41 2021 +0100 Bump maven-shared-utils from 3.2.1 to 3.3.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b51fddd..969a99b 100644 --- a/pom.xml +++ b/pom.xml @@ -130,7 +130,7 @@ <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-shared-utils</artifactId> - <version>3.2.1</version> + <version>3.3.3</version> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> |
In reply to this post by slachiewicz
This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git commit 252273303cac8f11b5441a8468cb44755a093fe3 Author: Sylwester Lachiewicz <[hidden email]> AuthorDate: Mon Feb 22 13:42:09 2021 +0100 Bump actions/cache from v2 to v2.1.4 --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 842d3ae..11207d6 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -35,7 +35,7 @@ jobs: uses: actions/checkout@v2 - name: Cache local Maven repository - uses: actions/cache@v2 + uses: actions/cache@v2.1.4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} |
Free forum by Nabble | Edit this page |