|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <parent> |
| 6 | + <groupId>org.scijava</groupId> |
| 7 | + <artifactId>scijava-incubator</artifactId> |
| 8 | + <version>0-SNAPSHOT</version> |
| 9 | + <relativePath>../..</relativePath> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <groupId>net.imagej</groupId> |
| 13 | + <artifactId>imagej-mesh2</artifactId> |
| 14 | + |
| 15 | + <name>ImageJ Mesh 2</name> |
| 16 | + <description>3D mesh structures for ImageJ.</description> |
| 17 | + <url>https://imagej.net/ImageJ_Mesh</url> |
| 18 | + <inceptionYear>2016</inceptionYear> |
| 19 | + <organization> |
| 20 | + <name>ImageJ</name> |
| 21 | + <url>https://imagej.net/</url> |
| 22 | + </organization> |
| 23 | + <licenses> |
| 24 | + <license> |
| 25 | + <name>Simplified BSD License</name> |
| 26 | + <distribution>repo</distribution> |
| 27 | + </license> |
| 28 | + </licenses> |
| 29 | + |
| 30 | + <developers> |
| 31 | + <developer> |
| 32 | + <id>kephale</id> |
| 33 | + <name>Kyle Harrington</name> |
| 34 | + <url>https://imagej.net/User:Kharrington</url> |
| 35 | + <roles> |
| 36 | + <role>founder</role> |
| 37 | + <role>lead</role> |
| 38 | + <role>developer</role> |
| 39 | + <role>debugger</role> |
| 40 | + <role>reviewer</role> |
| 41 | + <role>support</role> |
| 42 | + <role>maintainer</role> |
| 43 | + </roles> |
| 44 | + </developer> |
| 45 | + <developer> |
| 46 | + <id>rimadoma</id> |
| 47 | + <name>Richard Domander</name> |
| 48 | + <url>https://imagej.net/User:Rdom</url> |
| 49 | + <roles> |
| 50 | + <role>founder</role> |
| 51 | + <role>developer</role> |
| 52 | + </roles> |
| 53 | + </developer> |
| 54 | + <developer> |
| 55 | + <id>ctrueden</id> |
| 56 | + <name>Curtis Rueden</name> |
| 57 | + <url>https://imagej.net/people/ctrueden</url> |
| 58 | + <roles> |
| 59 | + <role>founder</role> |
| 60 | + <role>debugger</role> |
| 61 | + <role>reviewer</role> |
| 62 | + <role>maintainer</role> |
| 63 | + </roles> |
| 64 | + </developer> |
| 65 | + <developer> |
| 66 | + <id>tpietzsch</id> |
| 67 | + <name>Tobias Pietzsch</name> |
| 68 | + <url>https://imagej.net/User:tpietzsch</url> |
| 69 | + <roles> |
| 70 | + <role>developer</role> |
| 71 | + </roles> |
| 72 | + </developer> |
| 73 | + </developers> |
| 74 | + <contributors> |
| 75 | + <!-- |
| 76 | + NB: Need at least one element to override the parent. |
| 77 | + See: https://issues.apache.org/jira/browse/MNG-5220 |
| 78 | + --> |
| 79 | + <contributor> |
| 80 | + <name>None</name> |
| 81 | + </contributor> |
| 82 | + </contributors> |
| 83 | + |
| 84 | + <mailingLists> |
| 85 | + <mailingList> |
| 86 | + <name>Image.sc Forum</name> |
| 87 | + <archive>https://forum.image.sc/tag/imagej2</archive> |
| 88 | + </mailingList> |
| 89 | + </mailingLists> |
| 90 | + |
| 91 | + <scm> |
| 92 | + <connection>scm:git:git://github.com/scijava/incubator</connection> |
| 93 | + <developerConnection>scm:git:git@github.com:scijava/incubator</developerConnection> |
| 94 | + <tag>HEAD</tag> |
| 95 | + <url>https://github.com/scijava/incubator</url> |
| 96 | + </scm> |
| 97 | + <issueManagement> |
| 98 | + <system>GitHub Issues</system> |
| 99 | + <url>https://github.com/imagej/imagej-mesh2/issues</url> |
| 100 | + </issueManagement> |
| 101 | + <ciManagement> |
| 102 | + <system>GitHub Actions</system> |
| 103 | + <url>https://github.com/scijava/incubator/actions</url> |
| 104 | + </ciManagement> |
| 105 | + |
| 106 | + <properties> |
| 107 | + <package-name>net.imagej.mesh2</package-name> |
| 108 | + |
| 109 | + <license.licenseName>bsd_2</license.licenseName> |
| 110 | + <license.copyrightOwners>ImageJ2 developers.</license.copyrightOwners> |
| 111 | + <license.projectName>ImageJ2 software for multidimensional image processing and analysis.</license.projectName> |
| 112 | + |
| 113 | + <!-- NB: Deploy releases to the SciJava Maven repository. --> |
| 114 | + <releaseProfiles>sign,deploy-to-scijava</releaseProfiles> |
| 115 | + </properties> |
| 116 | + |
| 117 | + <repositories> |
| 118 | + <repository> |
| 119 | + <id>scijava.public</id> |
| 120 | + <url>https://maven.scijava.org/content/groups/public</url> |
| 121 | + </repository> |
| 122 | + <repository> |
| 123 | + <id>imagej.snapshots</id> |
| 124 | + <url>https://maven.scijava.org/content/groups/snapshots</url> |
| 125 | + </repository> |
| 126 | + </repositories> |
| 127 | + |
| 128 | + <dependencies> |
| 129 | + <!-- SciJava dependencies --> |
| 130 | + <dependency> |
| 131 | + <groupId>org.scijava</groupId> |
| 132 | + <artifactId>scijava-collections</artifactId> |
| 133 | + <version>${project.version}</version> |
| 134 | + </dependency> |
| 135 | + |
| 136 | + <!-- ImgLib2 dependencies --> |
| 137 | + <dependency> |
| 138 | + <groupId>net.imglib2</groupId> |
| 139 | + <artifactId>imglib2</artifactId> |
| 140 | + </dependency> |
| 141 | + |
| 142 | + <dependency> |
| 143 | + <groupId>org.apache.commons</groupId> |
| 144 | + <artifactId>commons-math3</artifactId> |
| 145 | + </dependency> |
| 146 | + |
| 147 | + <!-- Test scope dependencies --> |
| 148 | + <dependency> |
| 149 | + <groupId>junit</groupId> |
| 150 | + <artifactId>junit</artifactId> |
| 151 | + <scope>test</scope> |
| 152 | + </dependency> |
| 153 | + <dependency> |
| 154 | + <groupId>net.imglib2</groupId> |
| 155 | + <artifactId>imglib2-roi</artifactId> |
| 156 | + <scope>test</scope> |
| 157 | + </dependency> |
| 158 | + <dependency> |
| 159 | + <groupId>org.scijava</groupId> |
| 160 | + <artifactId>scijava-testutil</artifactId> |
| 161 | + <version>${project.version}</version> |
| 162 | + <scope>test</scope> |
| 163 | + </dependency> |
| 164 | + </dependencies> |
| 165 | +</project> |
0 commit comments