|
16 | 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
17 | 17 | </properties>
|
18 | 18 |
|
| 19 | + <licenses> |
| 20 | + <license> |
| 21 | + <name>Apache License, Version 2.0</name> |
| 22 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 23 | + <distribution>repo</distribution> |
| 24 | + </license> |
| 25 | + </licenses> |
| 26 | + |
| 27 | + |
| 28 | + <developers> |
| 29 | + <developer> |
| 30 | + <name>Barry Pitman</name> |
| 31 | + |
| 32 | + <organization>Ubiquitech</organization> |
| 33 | + <organizationUrl>https://ubiquitech.co.za/</organizationUrl> |
| 34 | + </developer> |
| 35 | + |
| 36 | + </developers> |
| 37 | + |
| 38 | + <scm> |
| 39 | + <url>https://github.com/barrypitman/JUnitXmlFormatter</url> |
| 40 | + <connection>scm:git:https://github.com/barrypitman/JUnitXmlFormatter.git</connection> |
| 41 | + <developerConnection>scm:git:https://github.com/barrypitman/JUnitXmlFormatter.git</developerConnection> |
| 42 | + <tag>HEAD</tag> |
| 43 | + </scm> |
| 44 | + |
19 | 45 | <distributionManagement>
|
| 46 | + <snapshotRepository> |
| 47 | + <id>sonatype-nexus-snapshots</id> |
| 48 | + <name>Sonatype Nexus Snapshots</name> |
| 49 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 50 | + </snapshotRepository> |
20 | 51 | <repository>
|
21 |
| - <id>github</id> |
22 |
| - <name>GitHub Packages</name> |
23 |
| - <url>https://maven.pkg.github.com/ubiquitech/staging</url> |
| 52 | + <id>sonatype-nexus-staging</id> |
| 53 | + <name>Nexus Release Repository</name> |
| 54 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> |
24 | 55 | </repository>
|
| 56 | + <downloadUrl>https://oss.sonatype.org/content/groups/public/org/knowm/xchart</downloadUrl> |
25 | 57 | </distributionManagement>
|
26 | 58 |
|
27 | 59 | <dependencies>
|
|
31 | 63 | <version>4.11</version>
|
32 | 64 | </dependency>
|
33 | 65 | </dependencies>
|
| 66 | + |
| 67 | + <profiles> |
| 68 | + <profile> |
| 69 | + <id>deploy</id> |
| 70 | + |
| 71 | + <build> |
| 72 | + <plugins> |
| 73 | + <plugin> |
| 74 | + <groupId>org.apache.maven.plugins</groupId> |
| 75 | + <artifactId>maven-gpg-plugin</artifactId> |
| 76 | + <version>3.0.1</version> |
| 77 | + <configuration> |
| 78 | + <!-- Prevent gpg from using pinentry programs --> |
| 79 | + <gpgArguments> |
| 80 | + <arg>--pinentry-mode</arg> |
| 81 | + <arg>loopback</arg> |
| 82 | + </gpgArguments> |
| 83 | + </configuration> |
| 84 | + <executions> |
| 85 | + <execution> |
| 86 | + <id>sign-artifacts</id> |
| 87 | + <phase>verify</phase> |
| 88 | + <goals> |
| 89 | + <goal>sign</goal> |
| 90 | + </goals> |
| 91 | + </execution> |
| 92 | + </executions> |
| 93 | + </plugin> |
| 94 | + </plugins> |
| 95 | + </build> |
| 96 | + |
| 97 | + </profile> |
| 98 | + </profiles> |
| 99 | + |
34 | 100 | </project>
|
0 commit comments