|
| 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>pom-scijava</artifactId> |
| 8 | + <version>40.0.0</version> |
| 9 | + <relativePath /> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <groupId>net.clearvolume</groupId> |
| 13 | + <artifactId>clearvolume</artifactId> |
| 14 | + <version>1.4.4-SNAPSHOT</version> |
| 15 | + |
| 16 | + <name>clearvolume</name> |
| 17 | + <description>ClearVolume library for real-time live 3D visualization.</description> |
| 18 | + <url>https://github.com/ClearVolume/clearvolume</url> |
| 19 | + <inceptionYear>2013</inceptionYear> |
| 20 | + <organization> |
| 21 | + <name>ClearVolume</name> |
| 22 | + <url>https://clearvolume.github.io/</url> |
| 23 | + </organization> |
| 24 | + <licenses> |
| 25 | + <license> |
| 26 | + <name>GNU Lesser General Public License v3+</name> |
| 27 | + <url>https://www.gnu.org/licenses/lgpl-3.0.html</url> |
| 28 | + <distribution>repo</distribution> |
| 29 | + </license> |
| 30 | + </licenses> |
| 31 | + |
| 32 | + <developers> |
| 33 | + <!-- See https://imagej.net/Team --> |
| 34 | + <developer> |
| 35 | + <id>FIXME</id> |
| 36 | + <name>Noma Onomatopoeia</name> |
| 37 | + <url>https://mycompany.com/people/noma-onomatopoeia</url> |
| 38 | + <roles> |
| 39 | + <role>founder</role> |
| 40 | + <role>lead</role> |
| 41 | + <role>developer</role> |
| 42 | + <role>debugger</role> |
| 43 | + <role>reviewer</role> |
| 44 | + <role>support</role> |
| 45 | + <role>maintainer</role> |
| 46 | + </roles> |
| 47 | + </developer> |
| 48 | + </developers> |
| 49 | + <contributors> |
| 50 | + <contributor> |
| 51 | + <name>None</name> |
| 52 | + </contributor> |
| 53 | + </contributors> |
| 54 | + |
| 55 | + <mailingLists> |
| 56 | + <mailingList> |
| 57 | + <name>Image.sc Forum</name> |
| 58 | + <archive>https://forum.image.sc/tag/clearvolume</archive> |
| 59 | + </mailingList> |
| 60 | + </mailingLists> |
| 61 | + |
| 62 | + <scm> |
| 63 | + <connection>scm:git:https://github.com/ClearVolume/clearvolume</connection> |
| 64 | + < developerConnection>scm:git: [email protected]:ClearVolume/clearvolume</ developerConnection> |
| 65 | + <tag>HEAD</tag> |
| 66 | + <url>https://github.com/ClearVolume/clearvolume</url> |
| 67 | + </scm> |
| 68 | + <issueManagement> |
| 69 | + <system>GitHub Issues</system> |
| 70 | + <url>https://github.com/ClearVolume/clearvolume/issues</url> |
| 71 | + </issueManagement> |
| 72 | + <ciManagement> |
| 73 | + <system>None</system> |
| 74 | + </ciManagement> |
| 75 | + |
| 76 | + <properties> |
| 77 | + <package-name>clearvolume</package-name> |
| 78 | + <license.licenseName>lgpl_v3</license.licenseName> |
| 79 | + <license.copyrightOwners>ClearVolume developers.</license.copyrightOwners> |
| 80 | + |
| 81 | + <!-- |
| 82 | + NB: javacl is an unshaded-uberjar, which clashes with bridj, |
| 83 | + opencl4java and javacl-core. It even depends on the latter! |
| 84 | + For now, let's ignore this issue, since it may not be safe |
| 85 | + to exclude javacl as a whole... |
| 86 | + --> |
| 87 | + <allowedDuplicateClasses>${scijava.allowedDuplicateClasses},junit.*,com.nativelibs4java.opencl.*,com.nativelibs4java.util.*,com.ochafik.util.string.StringUtils,org.bridj.*</allowedDuplicateClasses> |
| 88 | + |
| 89 | + <!-- NB: Deploy releases to the SciJava Maven repository. --> |
| 90 | + <releaseProfiles>sign,deploy-to-scijava</releaseProfiles> |
| 91 | + |
| 92 | + <clearcl.version>0.5.2</clearcl.version> |
| 93 | + <clearaudio.version>1.0.2</clearaudio.version> |
| 94 | + <cleargl.version>2.2.11</cleargl.version> |
| 95 | + <orange-extensions.version>1.3.0</orange-extensions.version> |
| 96 | + </properties> |
| 97 | + |
| 98 | + <repositories> |
| 99 | + <repository> |
| 100 | + <id>scijava.public</id> |
| 101 | + <url>https://maven.scijava.org/content/groups/public</url> |
| 102 | + </repository> |
| 103 | + </repositories> |
| 104 | + |
| 105 | + <dependencies> |
| 106 | + <dependency> |
| 107 | + <groupId>commons-lang</groupId> |
| 108 | + <artifactId>commons-lang</artifactId> |
| 109 | + </dependency> |
| 110 | + <dependency> |
| 111 | + <groupId>commons-io</groupId> |
| 112 | + <artifactId>commons-io</artifactId> |
| 113 | + </dependency> |
| 114 | + <dependency> |
| 115 | + <groupId>net.sf.trove4j</groupId> |
| 116 | + <artifactId>trove4j</artifactId> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>args4j</groupId> |
| 120 | + <artifactId>args4j</artifactId> |
| 121 | + </dependency> |
| 122 | + <dependency> |
| 123 | + <groupId>com.miglayout</groupId> |
| 124 | + <artifactId>miglayout-core</artifactId> |
| 125 | + </dependency> |
| 126 | + <dependency> |
| 127 | + <groupId>com.miglayout</groupId> |
| 128 | + <artifactId>miglayout-swing</artifactId> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>com.miglayout</groupId> |
| 132 | + <artifactId>miglayout-swt</artifactId> |
| 133 | + </dependency> |
| 134 | + |
| 135 | + <dependency> |
| 136 | + <groupId>net.clearvolume</groupId> |
| 137 | + <artifactId>clearcl</artifactId> |
| 138 | + <version>${clearcl.version}</version> |
| 139 | + </dependency> |
| 140 | + <dependency> |
| 141 | + <groupId>net.clearvolume</groupId> |
| 142 | + <artifactId>clearaudio</artifactId> |
| 143 | + <version>${clearaudio.version}</version> |
| 144 | + </dependency> |
| 145 | + <dependency> |
| 146 | + <groupId>net.clearvolume</groupId> |
| 147 | + <artifactId>cleargl</artifactId> |
| 148 | + </dependency> |
| 149 | + |
| 150 | + <!-- Provided scope dependencies --> |
| 151 | + <dependency> |
| 152 | + <groupId>com.yuvimasory</groupId> |
| 153 | + <artifactId>orange-extensions</artifactId> |
| 154 | + <version>${orange-extensions.version}</version> |
| 155 | + <scope>provided</scope> |
| 156 | + </dependency> |
| 157 | + |
| 158 | + <dependency> |
| 159 | + <groupId>junit</groupId> |
| 160 | + <artifactId>junit</artifactId> |
| 161 | + <scope>compile</scope> |
| 162 | + </dependency> |
| 163 | + </dependencies> |
| 164 | + |
| 165 | + <build> |
| 166 | + <sourceDirectory>${project.basedir}/src/java</sourceDirectory> |
| 167 | + <testSourceDirectory>${project.basedir}/src/java</testSourceDirectory> |
| 168 | + <resources> |
| 169 | + <resource> |
| 170 | + <directory>${project.basedir}/src/java</directory> |
| 171 | + <excludes> |
| 172 | + <exclude>**/*.java</exclude> |
| 173 | + <exclude>**/package.html</exclude> |
| 174 | + </excludes> |
| 175 | + </resource> |
| 176 | + </resources> |
| 177 | + <testResources> |
| 178 | + <testResource> |
| 179 | + <directory>${project.basedir}/src/java</directory> |
| 180 | + <excludes> |
| 181 | + <exclude>**/*.java</exclude> |
| 182 | + <exclude>**/package.html</exclude> |
| 183 | + </excludes> |
| 184 | + </testResource> |
| 185 | + </testResources> |
| 186 | + |
| 187 | + </build> |
| 188 | +</project> |
0 commit comments