Skip to content

Commit

Permalink
Merge pull request #32 from secure-software-engineering/master
Browse files Browse the repository at this point in the history
Update develop
  • Loading branch information
schlichtig authored Aug 21, 2024
2 parents e651080 + 8588e89 commit 6b743d6
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 21 deletions.
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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
20 changes: 0 additions & 20 deletions .github/workflows/release.yml

This file was deleted.

16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.fraunhofer.iem</groupId>
<artifactId>pathexpression</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>

<licenses>
<license>
Expand All @@ -17,6 +17,7 @@
<url>[email protected]:johspaeth/PathExpression.git</url>
<tag>${project.version}</tag>
</scm>
<name>Tarjan's Path Expression Implementation for Java</name>
<description>Implementation of an algorithm by Tarjan that efficiently computes path expressions based on a labeled graph</description>
<url>https://github.com/johspaeth/PathExpression</url>

Expand Down Expand Up @@ -59,6 +60,19 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down

0 comments on commit 6b743d6

Please sign in to comment.