|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <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 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | | - <groupId>io.github.hap-java</groupId> |
5 | | - <artifactId>hap</artifactId> |
| 4 | + <groupId>com.github.j-n-k</groupId> |
| 5 | + <artifactId>hap-java</artifactId> |
6 | 6 | <name>hap-java</name> |
7 | 7 | <description>Homekit Accessory Protocol for Java</description> |
8 | | - <version>2.0.0.OH</version> |
| 8 | + <version>2.0.0.OH2</version> |
9 | 9 | <packaging>jar</packaging> |
10 | | - <url>https://github.com/hap-java/HAP-Java</url> |
| 10 | + <url>https://github.com/j-n-k/HAP-Java</url> |
11 | 11 |
|
12 | 12 | <properties> |
13 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
23 | 23 | </licenses> |
24 | 24 |
|
25 | 25 | <scm> |
26 | | - <connection>scm:git:https://github.com/hap-java/HAP-Java.git</connection> |
27 | | - <developerConnection>scm:git:git@github.com:hap-java/HAP-Java.git</developerConnection> |
28 | | - <url>https://github.com/hap-java/HAP-Java.git</url> |
| 26 | + <connection>scm:git:https://github.com/j-n-k/HAP-Java.git</connection> |
| 27 | + <developerConnection>scm:git:git@github.com:j-n-k/HAP-Java.git</developerConnection> |
| 28 | + <url>https://github.com/j-n-k/HAP-Java.git</url> |
29 | 29 | <tag>HEAD</tag> |
30 | 30 | </scm> |
31 | 31 |
|
|
208 | 208 | </execution> |
209 | 209 | </executions> |
210 | 210 | </plugin> |
211 | | - <plugin> |
212 | | - <artifactId>maven-assembly-plugin</artifactId> |
213 | | - <version>3.1.1</version> |
214 | | - <configuration> |
215 | | - <descriptors> |
216 | | - <descriptor>deploy/distribution.xml</descriptor> |
217 | | - </descriptors> |
218 | | - </configuration> |
219 | | - <executions> |
220 | | - <execution> |
221 | | - <id>make-assembly</id> <!-- this is used for inheritance merges --> |
222 | | - <phase>package</phase> <!-- bind to the packaging phase --> |
223 | | - <goals> |
224 | | - <goal>single</goal> |
225 | | - </goals> |
226 | | - </execution> |
227 | | - </executions> |
228 | | - </plugin> |
229 | 211 | <plugin> |
230 | 212 | <groupId>org.apache.maven.plugins</groupId> |
231 | 213 | <artifactId>maven-scm-publish-plugin</artifactId> |
|
238 | 220 | <goal>publish-scm</goal> |
239 | 221 | </goals> |
240 | 222 | <configuration> |
241 | | - <pubScmUrl>scm:git:git@github.com:hap-java/HAP-Java.git</pubScmUrl> |
| 223 | + <pubScmUrl>scm:git:git@github.com:J-N-K/HAP-Java.git</pubScmUrl> |
242 | 224 | <scmBranch>gh-pages</scmBranch> |
243 | 225 | </configuration> |
244 | 226 | </execution> |
|
278 | 260 | </build> |
279 | 261 |
|
280 | 262 | <distributionManagement> |
281 | | - <site> |
282 | | - <id>website</id> |
283 | | - <url>https://hap-java.github.io/</url> |
284 | | - </site> |
285 | 263 | <repository> |
286 | | - <id>ossrh</id> |
287 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 264 | + <id>bintray-j-n-k-repo</id> |
| 265 | + <url>https://api.bintray.com/maven/j-n-k/hap-java/hap-java/;publish=0</url> |
288 | 266 | </repository> |
289 | | - <snapshotRepository> |
290 | | - <id>ossrh</id> |
291 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
292 | | - </snapshotRepository> |
293 | 267 | </distributionManagement> |
294 | 268 |
|
295 | 269 | <reporting> |
|
322 | 296 | </plugins> |
323 | 297 | </reporting> |
324 | 298 |
|
325 | | - <profiles> |
326 | | - <profile> |
327 | | - <id>ossrh</id> |
328 | | - <properties> |
329 | | - <gpg.executable>gpg</gpg.executable> |
330 | | - <gpg.keyname>${env.GPG_KEYNAME}</gpg.keyname> |
331 | | - <gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase> |
332 | | - <gpg.defaultKeyring>false</gpg.defaultKeyring> |
333 | | - <gpg.publicKeyring>deploy/pubring.gpg</gpg.publicKeyring> |
334 | | - <gpg.secretKeyring>deploy/secring.gpg</gpg.secretKeyring> |
335 | | - </properties> |
336 | | - <activation> |
337 | | - <property> |
338 | | - <name>performRelease</name> |
339 | | - <value>true</value> |
340 | | - </property> |
341 | | - </activation> |
342 | | - <build> |
343 | | - <plugins> |
344 | | - <plugin> |
345 | | - <groupId>org.apache.maven.plugins</groupId> |
346 | | - <artifactId>maven-gpg-plugin</artifactId> |
347 | | - <version>1.5</version> |
348 | | - <executions> |
349 | | - <execution> |
350 | | - <id>sign-artifacts</id> |
351 | | - <phase>verify</phase> |
352 | | - <goals> |
353 | | - <goal>sign</goal> |
354 | | - </goals> |
355 | | - </execution> |
356 | | - </executions> |
357 | | - </plugin> |
358 | | - <plugin> |
359 | | - <groupId>org.sonatype.plugins</groupId> |
360 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
361 | | - <version>1.6.3</version> |
362 | | - <extensions>true</extensions> |
363 | | - <configuration> |
364 | | - <serverId>ossrh</serverId> |
365 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
366 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
367 | | - </configuration> |
368 | | - </plugin> |
369 | | - <plugin> |
370 | | - <groupId>org.apache.maven.plugins</groupId> |
371 | | - <artifactId>maven-release-plugin</artifactId> |
372 | | - <version>2.5.3</version> |
373 | | - </plugin> |
374 | | - </plugins> |
375 | | - </build> |
376 | | - </profile> |
377 | | - </profiles> |
378 | | - |
379 | 299 | </project> |
0 commit comments