-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from secure-software-engineering/develop
Update master for release
- Loading branch information
Showing
1 changed file
with
20 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,22 +12,26 @@ | |
</licenses> | ||
|
||
<scm> | ||
<connection>scm:git:${project.scm.url}</connection> | ||
<developerConnection>scm:git:${project.scm.url}</developerConnection> | ||
<url>[email protected]:johspaeth/PathExpression.git</url> | ||
<tag>${project.version}</tag> | ||
<connection>scm:git:[email protected]:secure-software-engineering/PathExpression.git</connection> | ||
<developerConnection>scm:git:ssh://github.com:secure-software-engineering/PathExpression.git</developerConnection> | ||
<url>https://github.com/secure-software-engineering/PathExpression</url> | ||
</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> | ||
|
||
<developers> | ||
<developer> | ||
<name>Johannes Spaeth</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<developers> | ||
<developer> | ||
<name>Boomerang development team</name> | ||
<email>[email protected]</email> | ||
<organization>Research Group Secure Software Engineering</organization> | ||
<organizationUrl>https://www.hni.uni-paderborn.de/sse</organizationUrl> | ||
</developer> | ||
</developers> | ||
<contributors> | ||
<contributor> | ||
<name>Johannes Spaeth</name> | ||
<email>[email protected]</email> | ||
</contributor> | ||
</contributors> | ||
<profiles> | ||
<!-- This profile is used to avoid running the deployment in non-deployment | ||
contexts because they require specific keys from the Github remote. Include | ||
|
@@ -63,7 +67,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.8.0</version> | ||
<version>3.10.0</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadoc</id> | ||
|
@@ -76,7 +80,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>3.2.5</version> | ||
<version>3.2.6</version> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
|
@@ -131,7 +135,7 @@ | |
<dependency> | ||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-core</artifactId> | ||
<version>2.23.1</version> | ||
<version>2.24.0</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
|