This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a change to branch dependabot in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git. at b9b570e Bump maven-reporting-exec from 1.4 to 1.5.1 This branch includes the following new commits: new 4c9a75c Bump asm to 9.0 (maven-plugin-tools-generators) new fd9b178 Add Dependabot config new 953bbad Activate Github Actions new b9b570e Bump maven-reporting-exec from 1.4 to 1.5.1 The 4 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. |
This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch dependabot in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git commit 4c9a75c7ee750f159e4114bbeb25165b8f69e3ce Author: Sylwester Lachiewicz <[hidden email]> AuthorDate: Tue Jan 12 23:11:14 2021 +0100 Bump asm to 9.0 (maven-plugin-tools-generators) --- pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pom.xml b/pom.xml index c0a52bb..dff7f48 100644 --- a/pom.xml +++ b/pom.xml @@ -110,6 +110,16 @@ <version>${mavenPluginToolsVersion}</version> </dependency> <dependency> + <groupId>org.ow2.asm</groupId> + <artifactId>asm</artifactId> + <version>9.0</version> + </dependency> + <dependency> + <groupId>org.ow2.asm</groupId> + <artifactId>asm-commons</artifactId> + <version>9.0</version> + </dependency> + <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${mavenPluginToolsVersion}</version> |
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 dependabot 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 dependabot 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 dependabot in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git commit b9b570eb314cb6a598c5721bb2ae5b0e430d4523 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Tue Jan 12 23:07:34 2021 +0000 Bump maven-reporting-exec from 1.4 to 1.5.1 Bumps [maven-reporting-exec](https://github.com/apache/maven-reporting-exec) from 1.4 to 1.5.1. - [Release notes](https://github.com/apache/maven-reporting-exec/releases) - [Commits](https://github.com/apache/maven-reporting-exec/compare/maven-reporting-exec-1.4...maven-reporting-exec-1.5.1) 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..f597148 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> |
Free forum by Nabble | Edit this page |