diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..b76b895 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "maven" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 0000000..ca09edf --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,2 @@ +_extends: .github +tag-template: plexus-testing-$NEXT_MINOR_VERSION diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..c1b1dec --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,54 @@ +# 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-latest,windows-latest, macOS-latest] + java: [8, 11] + jdk: [adopt, zulu] + fail-fast: false + + runs-on: ${{ matrix.os }} + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Set up cache for ~./m2/repository + uses: actions/cache@v2.1.0 + with: + path: ~/.m2/repository + key: maven-${{ matrix.os }}-java${{ matrix.java }}-${{ hashFiles('**/pom.xml') }} + restore-keys: | + maven-${{ matrix.os }}-java${{ matrix.java }}- + maven-${{ matrix.os }}- + + - name: Set up JDK + uses: actions/setup-java@v2 + with: + distribution: ${{ matrix.jdk }} + java-version: ${{ matrix.java }} + + - name: Build with Maven + run: mvn install javadoc:javadoc -e -B -V -Pno-tests-if-not-on-osx diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000..84d3cb6 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,12 @@ +name: Release Drafter +on: + push: + branches: + - master +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v5.11.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/pom.xml b/pom.xml index f0a5bc8..b5ff202 100644 --- a/pom.xml +++ b/pom.xml @@ -1,43 +1,59 @@ - - 4.0.0 + + 4.0.0 + org.codehaus.plexus - plexus-testing - 1.0-SNAPSHOT - jar - - - - org.eclipse.sisu - org.eclipse.sisu.plexus - 0.3.4 - - - com.google.inject - guice - 4.2.3 - - - org.junit.jupiter - junit-jupiter-api - 5.7.0 - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 1.8 - 1.8 - - - - - - \ No newline at end of file + plexus + 7 + + + plexus-testing + 1.0.0-SNAPSHOT + + Plexus Testing + + + scm:git:git@github.com:codehaus-plexus/plexus-testing.git + scm:git:git@github.com:codehaus-plexus/plexus-testing.git + http://github.com/codehaus-plexus/plexus-testing + HEAD + + + github + https://github.com/codehaus-plexus/plexus-testing/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + true + 8 + 2020-01-20T18:52:37Z + + + + + org.eclipse.sisu + org.eclipse.sisu.plexus + 0.3.4 + + + com.google.inject + guice + 4.2.3 + + + org.junit.jupiter + junit-jupiter-api + 5.7.0 + + + +