Skip to content

Commit 6b743d6

Browse files
authored
Merge pull request #32 from secure-software-engineering/master
Update develop
2 parents e651080 + 8588e89 commit 6b743d6

File tree

3 files changed

+28
-21
lines changed

3 files changed

+28
-21
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: maven
9+
directory: "/"
10+
schedule:
11+
interval: weekly
12+
time: "04:00"
13+
open-pull-requests-limit: 10

.github/workflows/release.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>de.fraunhofer.iem</groupId>
44
<artifactId>pathexpression</artifactId>
5-
<version>1.0.1</version>
5+
<version>1.0.2</version>
66

77
<licenses>
88
<license>
@@ -17,6 +17,7 @@
1717
<url>git@github.com:johspaeth/PathExpression.git</url>
1818
<tag>${project.version}</tag>
1919
</scm>
20+
<name>Tarjan's Path Expression Implementation for Java</name>
2021
<description>Implementation of an algorithm by Tarjan that efficiently computes path expressions based on a labeled graph</description>
2122
<url>https://github.com/johspaeth/PathExpression</url>
2223

@@ -59,6 +60,19 @@
5960
</execution>
6061
</executions>
6162
</plugin>
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-javadoc-plugin</artifactId>
66+
<version>3.6.0</version>
67+
<executions>
68+
<execution>
69+
<id>attach-javadoc</id>
70+
<goals>
71+
<goal>jar</goal>
72+
</goals>
73+
</execution>
74+
</executions>
75+
</plugin>
6276
<plugin>
6377
<groupId>org.apache.maven.plugins</groupId>
6478
<artifactId>maven-gpg-plugin</artifactId>

0 commit comments

Comments
 (0)