[7380] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
[6885] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
---|
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
---|
[7595] | 5 | http://maven.apache.org/xsd/maven-v4.0.0.xsd"> |
---|
[7380] | 6 | <modelVersion>4.0.0</modelVersion> |
---|
[6885] | 7 | |
---|
| 8 | <parent> |
---|
| 9 | <groupId>loci</groupId> |
---|
[7905] | 10 | <artifactId>pom-loci</artifactId> |
---|
[7595] | 11 | <version>1.0-SNAPSHOT</version> |
---|
[6885] | 12 | </parent> |
---|
| 13 | |
---|
| 14 | <artifactId>MultiLUT</artifactId> |
---|
[7380] | 15 | |
---|
[6885] | 16 | <name>Multi-LUT</name> |
---|
| 17 | <description>A demo application for visually exploring multi-spectral image data.</description> |
---|
| 18 | <inceptionYear>2001</inceptionYear> |
---|
| 19 | |
---|
| 20 | <licenses> |
---|
| 21 | <license> |
---|
[6929] | 22 | <name>BSD</name> |
---|
| 23 | <url>http://dev.loci.wisc.edu/svn/java/trunk/legacy/multi-lut/LICENSE.txt</url> |
---|
[6885] | 24 | <distribution>repo</distribution> |
---|
| 25 | </license> |
---|
| 26 | </licenses> |
---|
| 27 | |
---|
| 28 | <dependencies> |
---|
| 29 | <dependency> |
---|
| 30 | <groupId>visad</groupId> |
---|
| 31 | <artifactId>visad-lite</artifactId> |
---|
| 32 | <version>2.0.20070828</version> |
---|
| 33 | </dependency> |
---|
| 34 | </dependencies> |
---|
| 35 | |
---|
| 36 | <build> |
---|
| 37 | <plugins> |
---|
| 38 | <plugin> |
---|
| 39 | <artifactId>maven-jar-plugin</artifactId> |
---|
| 40 | <configuration> |
---|
| 41 | <archive> |
---|
| 42 | <manifest> |
---|
| 43 | <mainClass>loci.apps.MultiLUT</mainClass> |
---|
| 44 | </manifest> |
---|
| 45 | </archive> |
---|
| 46 | </configuration> |
---|
| 47 | </plugin> |
---|
| 48 | </plugins> |
---|
| 49 | </build> |
---|
| 50 | |
---|
| 51 | <developers> |
---|
| 52 | <developer> |
---|
| 53 | <id>curtis</id> |
---|
| 54 | <name>Curtis Rueden</name> |
---|
| 55 | <email>ctrueden@wisc.edu</email> |
---|
| 56 | <url>http://loci.wisc.edu/people/curtis-rueden</url> |
---|
| 57 | <organization>UW-Madison LOCI</organization> |
---|
| 58 | <organizationUrl>http://loci.wisc.edu/</organizationUrl> |
---|
| 59 | <roles> |
---|
| 60 | <role>developer</role> |
---|
| 61 | </roles> |
---|
| 62 | <timezone>-6</timezone> |
---|
| 63 | <properties> |
---|
| 64 | <picUrl>http://loci.wisc.edu/files/loci/images/people/curtis-2010.jpg</picUrl> |
---|
| 65 | </properties> |
---|
| 66 | </developer> |
---|
| 67 | </developers> |
---|
| 68 | |
---|
[7595] | 69 | <!-- NB: for loci-base, in case of partial checkout --> |
---|
[6885] | 70 | <repositories> |
---|
| 71 | <repository> |
---|
| 72 | <id>loci.releases</id> |
---|
[7612] | 73 | <url>http://dev.loci.wisc.edu/maven2/releases</url> |
---|
[6885] | 74 | </repository> |
---|
[7595] | 75 | <repository> |
---|
| 76 | <id>loci.snapshots</id> |
---|
[7612] | 77 | <url>http://dev.loci.wisc.edu/maven2/snapshots</url> |
---|
[7595] | 78 | </repository> |
---|
[6885] | 79 | </repositories> |
---|
| 80 | |
---|
| 81 | </project> |
---|