|
| 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>imagej2-legacy</artifactId> |
| 14 | + |
| 15 | + <name>ImageJ2 Legacy</name> |
| 16 | + <description>An interface between SciJava 3 and ImageJ2.</description> |
| 17 | + <url>https://github.com/scijava/scijava</url> |
| 18 | + <inceptionYear>2023</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>ctrueden</id> |
| 33 | + <name>Curtis Rueden</name> |
| 34 | + <url>https://imagej.net/people/ctrueden</url> |
| 35 | + <roles> |
| 36 | + <role>founder</role> |
| 37 | + <role>debugger</role> |
| 38 | + <role>reviewer</role> |
| 39 | + <role>maintainer</role> |
| 40 | + </roles> |
| 41 | + </developer> |
| 42 | + <developer> |
| 43 | + <id>gselzer</id> |
| 44 | + <name>Gabriel Selzer</name> |
| 45 | + <url>https://imagej.net/people/gselzer</url> |
| 46 | + <roles> |
| 47 | + <role>founder</role> |
| 48 | + <role>debugger</role> |
| 49 | + <role>reviewer</role> |
| 50 | + <role>maintainer</role> |
| 51 | + </roles> |
| 52 | + </developer> |
| 53 | + </developers> |
| 54 | + <contributors> |
| 55 | + <!-- |
| 56 | + NB: Need at least one element to override the parent. |
| 57 | + See: https://issues.apache.org/jira/browse/MNG-5220 |
| 58 | + --> |
| 59 | + <contributor> |
| 60 | + <name>None</name> |
| 61 | + </contributor> |
| 62 | + </contributors> |
| 63 | + |
| 64 | + <mailingLists> |
| 65 | + <mailingList> |
| 66 | + <name>Image.sc Forum</name> |
| 67 | + <archive>https://forum.image.sc/tag/imagej2</archive> |
| 68 | + </mailingList> |
| 69 | + </mailingLists> |
| 70 | + |
| 71 | + <scm> |
| 72 | + <connection>scm:git:git://github.com/scijava/incubator</connection> |
| 73 | + <developerConnection>scm:git:git@github.com:scijava/incubator</developerConnection> |
| 74 | + <tag>HEAD</tag> |
| 75 | + <url>https://github.com/scijava/incubator</url> |
| 76 | + </scm> |
| 77 | + <issueManagement> |
| 78 | + <system>GitHub Issues</system> |
| 79 | + <url>https://github.com/imagej/imagej-ops2/issues</url> |
| 80 | + </issueManagement> |
| 81 | + <ciManagement> |
| 82 | + <system>GitHub Actions</system> |
| 83 | + <url>https://github.com/scijava/incubator/actions</url> |
| 84 | + </ciManagement> |
| 85 | + |
| 86 | + <properties> |
| 87 | + <package-name>net.imagej.legacy2</package-name> |
| 88 | + |
| 89 | + <license.licenseName>bsd_2</license.licenseName> |
| 90 | + <license.copyrightOwners>ImageJ2 developers.</license.copyrightOwners> |
| 91 | + <license.projectName>ImageJ2 software for multidimensional image processing and analysis.</license.projectName> |
| 92 | + |
| 93 | + <!-- NB: Deploy releases to the SciJava Maven repository. --> |
| 94 | + <releaseProfiles>sign,deploy-to-scijava</releaseProfiles> |
| 95 | + </properties> |
| 96 | + |
| 97 | + <repositories> |
| 98 | + <repository> |
| 99 | + <id>scijava.public</id> |
| 100 | + <url>https://maven.scijava.org/content/groups/public</url> |
| 101 | + </repository> |
| 102 | + <repository> |
| 103 | + <id>imagej.snapshots</id> |
| 104 | + <url>https://maven.scijava.org/content/groups/snapshots</url> |
| 105 | + </repository> |
| 106 | + </repositories> |
| 107 | + |
| 108 | + <dependencies> |
| 109 | + <!-- ImageJ2 dependencies --> |
| 110 | + <dependency> |
| 111 | + <groupId>net.imagej</groupId> |
| 112 | + <artifactId>imagej-common</artifactId> |
| 113 | + </dependency> |
| 114 | + <!-- SciJava dependencies --> |
| 115 | + <dependency> |
| 116 | + <groupId>org.scijava</groupId> |
| 117 | + <artifactId>scijava-collections</artifactId> |
| 118 | + <version>${project.version}</version> |
| 119 | + </dependency> |
| 120 | + <dependency> |
| 121 | + <groupId>org.scijava</groupId> |
| 122 | + <artifactId>scijava-priority</artifactId> |
| 123 | + <version>${project.version}</version> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>org.scijava</groupId> |
| 127 | + <artifactId>scijava-types</artifactId> |
| 128 | + <version>${project.version}</version> |
| 129 | + </dependency> |
| 130 | + |
| 131 | + <!-- ImgLib2 dependencies --> |
| 132 | + <dependency> |
| 133 | + <groupId>net.imglib2</groupId> |
| 134 | + <artifactId>imglib2</artifactId> |
| 135 | + </dependency> |
| 136 | + |
| 137 | + <dependency> |
| 138 | + <groupId>org.apache.commons</groupId> |
| 139 | + <artifactId>commons-math3</artifactId> |
| 140 | + </dependency> |
| 141 | + |
| 142 | + <!-- Test scope dependencies --> |
| 143 | + <dependency> |
| 144 | + <groupId>org.junit.jupiter</groupId> |
| 145 | + <artifactId>junit-jupiter-api</artifactId> |
| 146 | + <scope>test</scope> |
| 147 | + </dependency> |
| 148 | + <dependency> |
| 149 | + <groupId>org.junit.jupiter</groupId> |
| 150 | + <artifactId>junit-jupiter-engine</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