|
8 | 8 | <artifactId>zarr-java</artifactId> |
9 | 9 | <version>0.0.1-SNAPSHOT</version> |
10 | 10 |
|
| 11 | + <name>Zarr-Java</name> |
| 12 | + <description> |
| 13 | + Zarr-Java is a Java library providing an implementation of chunked, |
| 14 | + compressed, N-dimensional arrays implementing the ZarrV3 format. |
| 15 | + </description> |
| 16 | + <url>https://github.com/zarr-developers/zarr-java</url> |
| 17 | + |
| 18 | + <licenses> |
| 19 | + <license> |
| 20 | + <name>MIT License</name> |
| 21 | + <url>https://opensource.org/license/mit/</url> |
| 22 | + <distribution>repo</distribution> |
| 23 | + </license> |
| 24 | + </licenses> |
| 25 | + |
| 26 | + <scm> |
| 27 | + <url>https://github.com/zarr-developers/zarr-java</url> |
| 28 | + <connection>scm:git:git://github.com/zarr-developers/zarr-java.git</connection> |
| 29 | + < developerConnection>scm:git: [email protected]:zarr-developers/zarr-java.git</ developerConnection> |
| 30 | + </scm> |
| 31 | + |
| 32 | + |
11 | 33 | <properties> |
12 | 34 | <maven.compiler.source>8</maven.compiler.source> |
13 | 35 | <maven.compiler.target>8</maven.compiler.target> |
|
85 | 107 | </dependency> |
86 | 108 | </dependencies> |
87 | 109 |
|
| 110 | + |
| 111 | + <distributionManagement> |
| 112 | + <repository> |
| 113 | + <id>ossrh</id> |
| 114 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 115 | + </repository> |
| 116 | + </distributionManagement> |
| 117 | + <!-- Repositories are not recommended (see https://maven.apache.org/repository/guide-central-repository-upload.html#faq-and-common-mistakes)--> |
88 | 118 | <repositories> |
89 | 119 | <repository> |
90 | 120 | <id>unidata-all</id> |
|
103 | 133 | <useSystemClassLoader>false</useSystemClassLoader> |
104 | 134 | </configuration> |
105 | 135 | </plugin> |
| 136 | + <plugin> |
| 137 | + <groupId>org.apache.maven.plugins</groupId> |
| 138 | + <artifactId>maven-compiler-plugin</artifactId> |
| 139 | + <version>3.13.0</version> |
| 140 | + <configuration> |
| 141 | + <source>${maven.compiler.source}</source> |
| 142 | + <target>${maven.compiler.target}</target> |
| 143 | + </configuration> |
| 144 | + |
| 145 | + <groupId>org.sonatype.plugins</groupId> |
| 146 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 147 | + <version>1.6.6</version> |
| 148 | + <extensions>true</extensions> |
| 149 | + <configuration> |
| 150 | + <serverId>nexus</serverId> |
| 151 | + <nexusUrl>http://localhost:8081/nexus/</nexusUrl> |
| 152 | + </configuration> |
| 153 | + </plugin> |
106 | 154 | </plugins> |
107 | 155 | </build> |
108 | 156 | </project> |
0 commit comments