[7881] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
| 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 |
---|
| 5 | http://maven.apache.org/xsd/maven-v4.0.0.xsd"> |
---|
| 6 | <modelVersion>4.0.0</modelVersion> |
---|
| 7 | |
---|
| 8 | <parent> |
---|
| 9 | <groupId>loci</groupId> |
---|
| 10 | <artifactId>loci-base</artifactId> |
---|
| 11 | <version>1.0-SNAPSHOT</version> |
---|
| 12 | </parent> |
---|
| 13 | |
---|
| 14 | <artifactId>prairie-ome-tiff</artifactId> |
---|
| 15 | |
---|
| 16 | <name>Prairie OME-TIFF</name> |
---|
| 17 | <description>Command line tool to inject OME-XML into Prairie TIFF files.</description> |
---|
| 18 | <inceptionYear>2012</inceptionYear> |
---|
| 19 | |
---|
| 20 | <licenses> |
---|
| 21 | <license> |
---|
| 22 | <name>BSD</name> |
---|
| 23 | <url>http://dev.loci.wisc.edu/svn/software/trunk/projects/prairie-ome-tiff/LICENSE.txt</url> |
---|
| 24 | <distribution>repo</distribution> |
---|
| 25 | </license> |
---|
| 26 | </licenses> |
---|
| 27 | |
---|
| 28 | <dependencies> |
---|
| 29 | <dependency> |
---|
| 30 | <groupId>${bio-formats.groupId}</groupId> |
---|
| 31 | <artifactId>loci-common</artifactId> |
---|
| 32 | <version>${bio-formats.version}</version> |
---|
| 33 | </dependency> |
---|
| 34 | <dependency> |
---|
| 35 | <groupId>${bio-formats.groupId}</groupId> |
---|
| 36 | <artifactId>scifio</artifactId> |
---|
| 37 | <version>${bio-formats.version}</version> |
---|
| 38 | </dependency> |
---|
| 39 | </dependencies> |
---|
| 40 | |
---|
| 41 | <build> |
---|
| 42 | <plugins> |
---|
| 43 | <plugin> |
---|
| 44 | <artifactId>maven-jar-plugin</artifactId> |
---|
| 45 | <configuration> |
---|
| 46 | <archive> |
---|
| 47 | <manifest> |
---|
| 48 | <mainClass>loci.apps.prairie.OMEInjector</mainClass> |
---|
| 49 | <packageName>loci.apps.prairie</packageName> |
---|
| 50 | </manifest> |
---|
| 51 | </archive> |
---|
| 52 | </configuration> |
---|
| 53 | </plugin> |
---|
| 54 | </plugins> |
---|
| 55 | </build> |
---|
| 56 | |
---|
| 57 | <developers> |
---|
| 58 | <developer> |
---|
| 59 | <id>briney</id> |
---|
| 60 | <name>Kristin Briney</name> |
---|
| 61 | <url>http://loci.wisc.edu/people/kristin-briney</url> |
---|
| 62 | <organization>UW-Madison LOCI</organization> |
---|
| 63 | <organizationUrl>http://loci.wisc.edu/</organizationUrl> |
---|
| 64 | <roles> |
---|
| 65 | <role>developer</role> |
---|
| 66 | </roles> |
---|
| 67 | <timezone>-6</timezone> |
---|
| 68 | </developer> |
---|
| 69 | <developer> |
---|
| 70 | <id>curtis</id> |
---|
| 71 | <name>Curtis Rueden</name> |
---|
| 72 | <email>ctrueden@wisc.edu</email> |
---|
| 73 | <url>http://loci.wisc.edu/people/curtis-rueden</url> |
---|
| 74 | <organization>UW-Madison LOCI</organization> |
---|
| 75 | <organizationUrl>http://loci.wisc.edu/</organizationUrl> |
---|
| 76 | <roles> |
---|
| 77 | <role>architect</role> |
---|
| 78 | <role>developer</role> |
---|
| 79 | </roles> |
---|
| 80 | <timezone>-6</timezone> |
---|
| 81 | <properties> |
---|
| 82 | <picUrl>http://loci.wisc.edu/files/loci/images/people/curtis-2010.jpg</picUrl> |
---|
| 83 | </properties> |
---|
| 84 | </developer> |
---|
| 85 | </developers> |
---|
| 86 | |
---|
| 87 | <!-- NB: for loci-base, in case of partial checkout --> |
---|
| 88 | <repositories> |
---|
| 89 | <repository> |
---|
| 90 | <id>loci.releases</id> |
---|
| 91 | <url>http://dev.loci.wisc.edu/maven2/releases</url> |
---|
| 92 | </repository> |
---|
| 93 | <repository> |
---|
| 94 | <id>loci.snapshots</id> |
---|
| 95 | <url>http://dev.loci.wisc.edu/maven2/snapshots</url> |
---|
| 96 | </repository> |
---|
| 97 | </repositories> |
---|
| 98 | |
---|
| 99 | </project> |
---|