|
17 | 17 | <license> |
18 | 18 | <name>MIT License</name> |
19 | 19 | <url>https://www.opensource.org/licenses/mit-license.php</url> |
| 20 | + <distribution>repo</distribution> |
20 | 21 | </license> |
21 | 22 | </licenses> |
22 | 23 |
|
23 | 24 | <developers> |
24 | 25 | <developer> |
25 | 26 | <name>Bernard Ladenthin</name> |
26 | | - |
27 | 27 | <organizationUrl>https://github.com/bernardladenthin</organizationUrl> |
28 | 28 | </developer> |
29 | 29 | </developers> |
30 | 30 |
|
31 | 31 | <scm> |
32 | | - <connection>scm:git:git://github.com/kherud/java-llama.cpp.git</connection> |
33 | | - <developerConnection>scm:git:ssh://github.com:bernardladenthin/java-llama.cpp.git</developerConnection> |
| 32 | + <connection>scm:git:https://github.com/bernardladenthin/java-llama.cpp.git</connection> |
| 33 | + <developerConnection>scm:git:https://github.com/bernardladenthin/java-llama.cpp.git</developerConnection> |
34 | 34 | <url>https://github.com/bernardladenthin/java-llama.cpp/tree/master</url> |
35 | 35 | </scm> |
36 | 36 |
|
37 | | - <distributionManagement> |
38 | | - <snapshotRepository> |
39 | | - <id>ossrh</id> |
40 | | - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
41 | | - </snapshotRepository> |
42 | | - <repository> |
43 | | - <id>ossrh</id> |
44 | | - <url> |
45 | | - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
46 | | - </repository> |
47 | | - </distributionManagement> |
48 | | - |
49 | 37 | <properties> |
50 | 38 | <jna.version>5.18.1</jna.version> |
51 | 39 | <junit.version>4.13.2</junit.version> |
|
167 | 155 | <build> |
168 | 156 | <plugins> |
169 | 157 | <plugin> |
170 | | - <groupId>org.sonatype.plugins</groupId> |
171 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
172 | | - <version>1.6.13</version> |
173 | | - <extensions>true</extensions> |
174 | | - <configuration> |
175 | | - <serverId>ossrh</serverId> |
176 | | - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
177 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
178 | | - </configuration> |
| 158 | + <groupId>org.apache.maven.plugins</groupId> |
| 159 | + <artifactId>maven-source-plugin</artifactId> |
| 160 | + <version>3.3.1</version> |
| 161 | + <executions> |
| 162 | + <execution> |
| 163 | + <id>attach-sources</id> |
| 164 | + <goals><goal>jar-no-fork</goal></goals> |
| 165 | + </execution> |
| 166 | + </executions> |
179 | 167 | </plugin> |
| 168 | + |
| 169 | + <plugin> |
| 170 | + <groupId>org.apache.maven.plugins</groupId> |
| 171 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 172 | + <version>3.11.2</version> |
| 173 | + <executions> |
| 174 | + <execution> |
| 175 | + <id>attach-javadocs</id> |
| 176 | + <goals><goal>jar</goal></goals> |
| 177 | + </execution> |
| 178 | + </executions> |
| 179 | + </plugin> |
| 180 | + |
180 | 181 | <plugin> |
181 | 182 | <groupId>org.apache.maven.plugins</groupId> |
182 | 183 | <artifactId>maven-gpg-plugin</artifactId> |
183 | | - <version>3.1.0</version> |
| 184 | + <version>3.2.7</version> |
184 | 185 | <executions> |
185 | 186 | <execution> |
186 | 187 | <id>sign-artifacts</id> |
187 | 188 | <phase>verify</phase> |
188 | | - <goals> |
189 | | - <goal>sign</goal> |
190 | | - </goals> |
| 189 | + <goals><goal>sign</goal></goals> |
| 190 | + <configuration> |
| 191 | + <keyname>${gpg.keyname}</keyname> |
| 192 | + <gpgArguments> |
| 193 | + <arg>--pinentry-mode</arg> |
| 194 | + <arg>loopback</arg> |
| 195 | + </gpgArguments> |
| 196 | + </configuration> |
191 | 197 | </execution> |
192 | 198 | </executions> |
193 | 199 | </plugin> |
| 200 | + |
| 201 | + <plugin> |
| 202 | + <groupId>org.sonatype.central</groupId> |
| 203 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 204 | + <version>0.9.0</version> |
| 205 | + <extensions>true</extensions> |
| 206 | + <configuration> |
| 207 | + <publishingServerId>central</publishingServerId> |
| 208 | + <autoPublish>true</autoPublish> |
| 209 | + <waitUntil>published</waitUntil> |
| 210 | + </configuration> |
| 211 | + </plugin> |
| 212 | + |
194 | 213 | <plugin> |
195 | 214 | <groupId>org.apache.maven.plugins</groupId> |
196 | 215 | <artifactId>maven-jar-plugin</artifactId> |
|
0 commit comments