diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..7713a33 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: +- package-ecosystem: maven + directory: "/" + schedule: + interval: weekly + time: "04:00" + open-pull-requests-limit: 10 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 4386107..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Publish package to GitHub Packages -on: - release: - types: [created] -jobs: - publish: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-java@v3 - with: - java-version: '11' - distribution: 'temurin' - - name: Publish package - run: mvn --batch-mode deploy - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/pom.xml b/pom.xml index f12f67a..41de3f4 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 de.fraunhofer.iem pathexpression - 1.0.1 + 1.0.2 @@ -17,6 +17,7 @@ git@github.com:johspaeth/PathExpression.git ${project.version} + Tarjan's Path Expression Implementation for Java Implementation of an algorithm by Tarjan that efficiently computes path expressions based on a labeled graph https://github.com/johspaeth/PathExpression @@ -59,6 +60,19 @@ + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.0 + + + attach-javadoc + + jar + + + + org.apache.maven.plugins maven-gpg-plugin