|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 2 | <modelVersion>4.0.0</modelVersion> |
4 | 3 | <groupId>de.fraunhofer.iem</groupId> |
5 | | - <artifactId>PathExpression</artifactId> |
6 | | - <version>1.0.0-SNAPSHOT</version> |
| 4 | + <artifactId>pathexpression</artifactId> |
| 5 | + <version>1.0.1</version> |
| 6 | + |
| 7 | + <licenses> |
| 8 | + <license> |
| 9 | + <name>Eclipse Public License - v2.0</name> |
| 10 | + <url>https://www.eclipse.org/legal/epl-2.0/</url> |
| 11 | + </license> |
| 12 | + </licenses> |
| 13 | + |
| 14 | + <scm> |
| 15 | + <connection>scm:git:${project.scm.url}</connection> |
| 16 | + <developerConnection>scm:git:${project.scm.url}</developerConnection> |
| 17 | + <url>git@github.com:johspaeth/PathExpression.git</url> |
| 18 | + <tag>${project.version}</tag> |
| 19 | + </scm> |
| 20 | + <description>Implementation of an algorithm by Tarjan that efficiently computes path expressions based on a labeled graph</description> |
| 21 | + <url>https://github.com/johspaeth/PathExpression</url> |
| 22 | + |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <name>Johannes Spaeth</name> |
| 26 | + <email>johannes.spaeth@codeshield.de</email> |
| 27 | + <organization>CodeShield GmbH</organization> |
| 28 | + <organizationUrl>https://codeshield.de/</organizationUrl> |
| 29 | + </developer> |
| 30 | + </developers> |
| 31 | + |
| 32 | + <profiles> |
| 33 | + <!-- This profile is used to avoid running the deployment in non-deployment |
| 34 | + contexts because they require specific keys from the Github remote. Include |
| 35 | + this profile by setting the -Pdeployment flag. --> |
| 36 | + <profile> |
| 37 | + <id>deployment</id> |
| 38 | + <build> |
| 39 | + <plugins> |
| 40 | + <plugin> |
| 41 | + <groupId>org.sonatype.plugins</groupId> |
| 42 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 43 | + <version>1.6.13</version> |
| 44 | + <extensions>true</extensions> |
| 45 | + <configuration> |
| 46 | + <serverId>ossrh</serverId> |
| 47 | + <nexusUrl>https://s01.oss.sonatype.org</nexusUrl> |
| 48 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 49 | + </configuration> |
| 50 | + </plugin> |
| 51 | + <plugin> |
| 52 | + <groupId>org.apache.maven.plugins</groupId> |
| 53 | + <artifactId>maven-source-plugin</artifactId> |
| 54 | + <version>3.2.1</version> |
| 55 | + <executions> |
| 56 | + <execution> |
| 57 | + <id>attach-source</id> |
| 58 | + <goals> |
| 59 | + <goal>jar</goal> |
| 60 | + </goals> |
| 61 | + </execution> |
| 62 | + </executions> |
| 63 | + </plugin> |
| 64 | + <plugin> |
| 65 | + <groupId>org.apache.maven.plugins</groupId> |
| 66 | + <artifactId>maven-gpg-plugin</artifactId> |
| 67 | + <version>3.0.1</version> |
| 68 | + <executions> |
| 69 | + <execution> |
| 70 | + <id>sign-artifacts</id> |
| 71 | + <phase>verify</phase> |
| 72 | + <goals> |
| 73 | + <goal>sign</goal> |
| 74 | + </goals> |
| 75 | + <configuration> |
| 76 | + <gpgArguments> |
| 77 | + <arg>--pinentry-mode</arg> |
| 78 | + <arg>loopback</arg> |
| 79 | + </gpgArguments> |
| 80 | + </configuration> |
| 81 | + </execution> |
| 82 | + </executions> |
| 83 | + </plugin> |
| 84 | + </plugins> |
| 85 | + </build> |
| 86 | + </profile> |
| 87 | + </profiles> |
| 88 | + |
| 89 | + |
7 | 90 | <build> |
8 | 91 | <plugins> |
9 | 92 | <plugin> |
|
20 | 103 | </plugin> |
21 | 104 | </plugins> |
22 | 105 | </build> |
23 | | - <scm> |
24 | | - <connection>scm:git:${project.scm.url}</connection> |
25 | | - <developerConnection>scm:git:${project.scm.url}</developerConnection> |
26 | | - <url>git@github.com:johspaeth/PathExpression.git</url> |
27 | | - <tag>${project.version}</tag> |
28 | | - </scm> |
| 106 | + |
29 | 107 | <dependencies> |
30 | 108 | <dependency> |
31 | 109 | <groupId>com.google.guava</groupId> |
32 | 110 | <artifactId>guava</artifactId> |
33 | | - <version>29.0-jre</version> |
| 111 | + <version>32.0.0-jre</version> |
34 | 112 | </dependency> |
35 | 113 | <dependency> |
36 | 114 | <groupId>junit</groupId> |
|
41 | 119 | <dependency> |
42 | 120 | <groupId>org.apache.logging.log4j</groupId> |
43 | 121 | <artifactId>log4j-core</artifactId> |
44 | | - <version>2.13.2</version> |
| 122 | + <version>2.17.1</version> |
45 | 123 | </dependency> |
46 | 124 | </dependencies> |
47 | 125 |
|
48 | 126 | <distributionManagement> |
| 127 | + <snapshotRepository> |
| 128 | + <id>ossrh</id> |
| 129 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> |
| 130 | + </snapshotRepository> |
49 | 131 | <repository> |
50 | | - <id>github</id> |
51 | | - <name>GitHub Packages</name> |
52 | | - <url>https://maven.pkg.github.com/johspaeth/PathExpression</url> |
| 132 | + <id>ossrh</id> |
| 133 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
53 | 134 | </repository> |
54 | 135 | </distributionManagement> |
55 | 136 | </project> |
0 commit comments