|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>dev.zarr.zarrjava</groupId> |
| 7 | + <groupId>dev.zarr</groupId> |
8 | 8 | <artifactId>zarr-java</artifactId> |
9 | | - <version>0.0.1-SNAPSHOT</version> |
| 9 | + <version>0.0.2</version> |
| 10 | + |
| 11 | + <name>zarr-java</name> |
| 12 | + |
| 13 | + <description> |
| 14 | + zarr-java is a Java library providing an implementation of chunked, |
| 15 | + compressed, N-dimensional arrays close to the zarr-python package. |
| 16 | + </description> |
| 17 | + |
| 18 | + <url>https://github.com/zarr-developers/zarr-java</url> |
| 19 | + |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>MIT License</name> |
| 23 | + <url>https://opensource.org/license/mit/</url> |
| 24 | + <distribution>repo</distribution> |
| 25 | + </license> |
| 26 | + </licenses> |
| 27 | + |
| 28 | + <scm> |
| 29 | + <url>https://github.com/zarr-developers/zarr-java</url> |
| 30 | + <connection>scm:git:git://github.com/zarr-developers/zarr-java.git</connection> |
| 31 | + < developerConnection>scm:git: [email protected]:zarr-developers/zarr-java.git</ developerConnection> |
| 32 | + </scm> |
| 33 | + |
| 34 | + <developers> |
| 35 | + <developer> |
| 36 | + <id>normanrz</id> |
| 37 | + <name>Norman Rzepka</name> |
| 38 | + <roles> |
| 39 | + <role>maintainer</role> |
| 40 | + </roles> |
| 41 | + </developer> |
| 42 | + </developers> |
10 | 43 |
|
11 | 44 | <name>Zarr-Java</name> |
12 | 45 | <description> |
|
106 | 139 | </dependencies> |
107 | 140 |
|
108 | 141 | <distributionManagement> |
| 142 | + <snapshotRepository> |
| 143 | + <id>ossrh</id> |
| 144 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 145 | + </snapshotRepository> |
109 | 146 | <repository> |
110 | 147 | <id>ossrh</id> |
111 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 148 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
112 | 149 | </repository> |
113 | 150 | </distributionManagement> |
114 | 151 |
|
|
164 | 201 | <excludeResources>true</excludeResources> |
165 | 202 | </configuration> |
166 | 203 | </plugin> |
167 | | - <plugin> |
168 | | - <groupId>org.apache.maven.plugins</groupId> |
169 | | - <artifactId>maven-javadoc-plugin</artifactId> |
170 | | - <version>3.5.0</version> |
171 | | - <executions> |
172 | | - <execution> |
173 | | - <id>attach-javadoc</id> |
174 | | - <goals> |
175 | | - <goal>jar</goal> |
176 | | - </goals> |
177 | | - </execution> |
178 | | - </executions> |
179 | | - <configuration> |
180 | | - <source>8</source> |
181 | | - </configuration> |
182 | | - </plugin> |
183 | 204 | <plugin> |
184 | 205 | <groupId>org.apache.maven.plugins</groupId> |
185 | 206 | <artifactId>maven-resources-plugin</artifactId> |
|
195 | 216 | </plugin> |
196 | 217 | <plugin> |
197 | 218 | <groupId>org.apache.maven.plugins</groupId> |
198 | | - <artifactId>maven-gpg-plugin</artifactId> |
199 | | - <version>1.6</version> |
| 219 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 220 | + <version>3.5.0</version> |
| 221 | + <executions> |
| 222 | + <execution> |
| 223 | + <id>attach-javadoc</id> |
| 224 | + <goals> |
| 225 | + <goal>jar</goal> |
| 226 | + </goals> |
| 227 | + </execution> |
| 228 | + </executions> |
200 | 229 | <configuration> |
201 | | - <gpgArguments> |
202 | | - <arg>--pinentry-mode</arg> |
203 | | - <arg>loopback</arg> |
204 | | - </gpgArguments> |
| 230 | + <source>8</source> |
205 | 231 | </configuration> |
| 232 | + </plugin> |
| 233 | + <plugin> |
| 234 | + <groupId>org.apache.maven.plugins</groupId> |
| 235 | + <artifactId>maven-gpg-plugin</artifactId> |
| 236 | + <version>1.6</version> |
206 | 237 | <executions> |
207 | 238 | <execution> |
208 | | - <id>sign-artifacts</id> |
209 | | - <phase>verify</phase> |
210 | | - <goals> |
211 | | - <goal>sign</goal> |
212 | | - </goals> |
213 | | - <configuration> |
214 | | - <!-- TODO: Add GPG key name here --> |
215 | | - <keyname>TODO</keyname> |
216 | | - </configuration> |
| 239 | + <id>sign-artifacts</id> |
| 240 | + <phase>verify</phase> |
| 241 | + <goals> |
| 242 | + <goal>sign</goal> |
| 243 | + </goals> |
| 244 | + <configuration> |
| 245 | + <keyname>9F88D86AD9A0D91E</keyname> |
| 246 | + </configuration> |
217 | 247 | </execution> |
218 | 248 | </executions> |
219 | 249 | </plugin> |
|
0 commit comments