|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | 7 | <groupId>co.arago.hiro.client</groupId> |
8 | | - <artifactId>java-hiro-clients</artifactId> |
9 | | - <version>0.1.0</version> |
| 8 | + <artifactId>hiro-client-java</artifactId> |
| 9 | + <version>0.1.2</version> |
10 | 10 |
|
11 | 11 | <organization> |
12 | 12 | <name>arago GmbH</name> |
|
17 | 17 | <description> |
18 | 18 | This project is a library to access the Graph API of HIRO |
19 | 19 | </description> |
20 | | - <url>https://github.com/arago/java-hiro-clients</url> |
| 20 | + <url>https://github.com/arago/hiro-client-java</url> |
| 21 | + |
| 22 | + <developers> |
| 23 | + <developer> |
| 24 | + <id>whuebner</id> |
| 25 | + <name>Wolfgang Hübner</name> |
| 26 | + <email>whuebner@arago.co</email> |
| 27 | + <organization>arago GmbH</organization> |
| 28 | + <organizationUrl>https://www.arago.co</organizationUrl> |
| 29 | + <roles> |
| 30 | + <role>Developer</role> |
| 31 | + </roles> |
| 32 | + <timezone>Europe/Berlin</timezone> |
| 33 | + </developer> |
| 34 | + </developers> |
21 | 35 |
|
22 | 36 | <scm> |
23 | | - <url>scm:git:https://github.com/arago/java-hiro-clients.git</url> |
| 37 | + <url>scm:git:https://github.com/arago/hiro-client-java.git</url> |
24 | 38 | </scm> |
25 | 39 |
|
26 | 40 | <licenses> |
|
52 | 66 | </repository> |
53 | 67 | </repositories> |
54 | 68 |
|
55 | | - <distributionManagement> |
56 | | - <repository> |
57 | | - <id>github</id> |
58 | | - <uniqueVersion>false</uniqueVersion> |
59 | | - <name>arago GitHub Maven Repository</name> |
60 | | - <url>https://maven.pkg.github.com/arago/repository-public</url> |
61 | | - </repository> |
62 | | - <snapshotRepository> |
63 | | - <id>github</id> |
64 | | - <uniqueVersion>false</uniqueVersion> |
65 | | - <name>arago GitHub Maven Repository</name> |
66 | | - <url>https://maven.pkg.github.com/arago/repository-public</url> |
67 | | - </snapshotRepository> |
68 | | - </distributionManagement> |
| 69 | + <profiles> |
| 70 | + <profile> |
| 71 | + <id>github-repositories</id> |
| 72 | + <activation> |
| 73 | + <property> |
| 74 | + <name>!useRepo</name> |
| 75 | + </property> |
| 76 | + </activation> |
| 77 | + <distributionManagement> |
| 78 | + <repository> |
| 79 | + <id>github</id> |
| 80 | + <uniqueVersion>false</uniqueVersion> |
| 81 | + <name>arago GitHub Maven Repository</name> |
| 82 | + <url>https://maven.pkg.github.com/arago/repository-public</url> |
| 83 | + </repository> |
| 84 | + <snapshotRepository> |
| 85 | + <id>github</id> |
| 86 | + <uniqueVersion>false</uniqueVersion> |
| 87 | + <name>arago GitHub Maven Repository</name> |
| 88 | + <url>https://maven.pkg.github.com/arago/repository-public</url> |
| 89 | + </snapshotRepository> |
| 90 | + </distributionManagement> |
| 91 | + </profile> |
| 92 | + <profile> |
| 93 | + <id>global-repository</id> |
| 94 | + <activation> |
| 95 | + <property> |
| 96 | + <name>useRepo</name> |
| 97 | + <value>global</value> |
| 98 | + </property> |
| 99 | + </activation> |
| 100 | + <distributionManagement> |
| 101 | + <snapshotRepository> |
| 102 | + <id>ossrh</id> |
| 103 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 104 | + </snapshotRepository> |
| 105 | + <repository> |
| 106 | + <id>ossrh</id> |
| 107 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 108 | + </repository> |
| 109 | + </distributionManagement> |
| 110 | + </profile> |
| 111 | + <profile> |
| 112 | + <id>arago-private</id> |
| 113 | + <activation> |
| 114 | + <property> |
| 115 | + <name>useRepo</name> |
| 116 | + <value>aragoPrivate</value> |
| 117 | + </property> |
| 118 | + </activation> |
| 119 | + <distributionManagement> |
| 120 | + <repository> |
| 121 | + <id>arago-private</id> |
| 122 | + <uniqueVersion>false</uniqueVersion> |
| 123 | + </repository> |
| 124 | + <snapshotRepository> |
| 125 | + <id>arago-private</id> |
| 126 | + <uniqueVersion>false</uniqueVersion> |
| 127 | + </snapshotRepository> |
| 128 | + </distributionManagement> |
| 129 | + </profile> |
| 130 | + </profiles> |
69 | 131 |
|
70 | 132 | <build> |
71 | 133 | <plugins> |
|
0 commit comments