|
11 | 11 |
|
12 | 12 | <name>QPay Java SDK</name> |
13 | 13 | <description>Java SDK for QPay V2 API</description> |
| 14 | + <url>https://github.com/qpay-sdk/qpay-java</url> |
| 15 | + |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>MIT License</name> |
| 19 | + <url>https://opensource.org/licenses/MIT</url> |
| 20 | + <distribution>repo</distribution> |
| 21 | + </license> |
| 22 | + </licenses> |
| 23 | + |
| 24 | + <developers> |
| 25 | + <developer> |
| 26 | + <id>qpay-sdk</id> |
| 27 | + <name>QPay SDK Authors</name> |
| 28 | + <url>https://github.com/qpay-sdk</url> |
| 29 | + </developer> |
| 30 | + </developers> |
| 31 | + |
| 32 | + <scm> |
| 33 | + <connection>scm:git:git://github.com/qpay-sdk/qpay-java.git</connection> |
| 34 | + <developerConnection>scm:git:ssh://github.com:qpay-sdk/qpay-java.git</developerConnection> |
| 35 | + <url>https://github.com/qpay-sdk/qpay-java</url> |
| 36 | + </scm> |
| 37 | + |
| 38 | + <distributionManagement> |
| 39 | + <snapshotRepository> |
| 40 | + <id>central</id> |
| 41 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 42 | + </snapshotRepository> |
| 43 | + <repository> |
| 44 | + <id>central</id> |
| 45 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 46 | + </repository> |
| 47 | + </distributionManagement> |
14 | 48 |
|
15 | 49 | <properties> |
16 | 50 | <maven.compiler.source>17</maven.compiler.source> |
|
57 | 91 | <artifactId>maven-surefire-plugin</artifactId> |
58 | 92 | <version>3.2.5</version> |
59 | 93 | </plugin> |
| 94 | + <plugin> |
| 95 | + <groupId>org.apache.maven.plugins</groupId> |
| 96 | + <artifactId>maven-source-plugin</artifactId> |
| 97 | + <version>3.3.1</version> |
| 98 | + <executions> |
| 99 | + <execution> |
| 100 | + <id>attach-sources</id> |
| 101 | + <goals> |
| 102 | + <goal>jar-no-fork</goal> |
| 103 | + </goals> |
| 104 | + </execution> |
| 105 | + </executions> |
| 106 | + </plugin> |
| 107 | + <plugin> |
| 108 | + <groupId>org.apache.maven.plugins</groupId> |
| 109 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 110 | + <version>3.6.3</version> |
| 111 | + <executions> |
| 112 | + <execution> |
| 113 | + <id>attach-javadocs</id> |
| 114 | + <goals> |
| 115 | + <goal>jar</goal> |
| 116 | + </goals> |
| 117 | + </execution> |
| 118 | + </executions> |
| 119 | + </plugin> |
| 120 | + <plugin> |
| 121 | + <groupId>org.apache.maven.plugins</groupId> |
| 122 | + <artifactId>maven-gpg-plugin</artifactId> |
| 123 | + <version>3.2.4</version> |
| 124 | + <executions> |
| 125 | + <execution> |
| 126 | + <id>sign-artifacts</id> |
| 127 | + <phase>verify</phase> |
| 128 | + <goals> |
| 129 | + <goal>sign</goal> |
| 130 | + </goals> |
| 131 | + <configuration> |
| 132 | + <gpgArguments> |
| 133 | + <arg>--pinentry-mode</arg> |
| 134 | + <arg>loopback</arg> |
| 135 | + </gpgArguments> |
| 136 | + </configuration> |
| 137 | + </execution> |
| 138 | + </executions> |
| 139 | + </plugin> |
60 | 140 | </plugins> |
61 | 141 | </build> |
62 | 142 | </project> |
0 commit comments