[7667] | 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>wiscscan-java</artifactId> |
---|
| 15 | |
---|
| 16 | <name>WiscScan Java code</name> |
---|
| 17 | <description>Java code for use with WiscScan.</description> |
---|
| 18 | <inceptionYear>2008</inceptionYear> |
---|
| 19 | |
---|
| 20 | <licenses> |
---|
| 21 | <license> |
---|
| 22 | <name>BSD</name> |
---|
[7730] | 23 | <url>http://dev.loci.wisc.edu/svn/software/trunk/projects/wiscscan-java/LICENSE.txt</url> |
---|
[7667] | 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 | |
---|
| 35 | <dependency> |
---|
| 36 | <groupId>${bio-formats.groupId}</groupId> |
---|
| 37 | <artifactId>bio-formats</artifactId> |
---|
| 38 | <version>${bio-formats.version}</version> |
---|
| 39 | <scope>runtime</scope> |
---|
| 40 | </dependency> |
---|
| 41 | <dependency> |
---|
| 42 | <groupId>${bio-formats.groupId}</groupId> |
---|
| 43 | <artifactId>ome-xml</artifactId> |
---|
| 44 | <version>${bio-formats.version}</version> |
---|
| 45 | <scope>runtime</scope> |
---|
| 46 | </dependency> |
---|
| 47 | <dependency> |
---|
| 48 | <groupId>${project.groupId}</groupId> |
---|
| 49 | <artifactId>flow-cytometry</artifactId> |
---|
| 50 | <version>${project.version}</version> |
---|
| 51 | <scope>runtime</scope> |
---|
| 52 | </dependency> |
---|
| 53 | </dependencies> |
---|
| 54 | |
---|
| 55 | <build> |
---|
| 56 | <plugins> |
---|
| 57 | <plugin> |
---|
| 58 | <artifactId>maven-jar-plugin</artifactId> |
---|
| 59 | <configuration> |
---|
| 60 | <archive> |
---|
| 61 | <manifest> |
---|
| 62 | <packageName>loci.wiscscan</packageName> |
---|
| 63 | </manifest> |
---|
| 64 | </archive> |
---|
| 65 | </configuration> |
---|
| 66 | </plugin> |
---|
| 67 | <plugin> |
---|
| 68 | <groupId>loci.maven.plugins</groupId> |
---|
| 69 | <artifactId>cppwrap-maven-plugin</artifactId> |
---|
| 70 | <version>1.0-SNAPSHOT</version> |
---|
| 71 | <configuration> |
---|
| 72 | <libraries> |
---|
| 73 | <library>${bio-formats.groupId}:bio-formats:jar:${bio-formats.version}</library> |
---|
| 74 | <library>${bio-formats.groupId}:loci-common:jar:${bio-formats.version}</library> |
---|
| 75 | <library>${bio-formats.groupId}:ome-xml:jar:${bio-formats.version}</library> |
---|
| 76 | <library>${project.groupId}:flow-cytometry:jar:${project.version}</library> |
---|
| 77 | </libraries> |
---|
| 78 | </configuration> |
---|
| 79 | </plugin> |
---|
| 80 | </plugins> |
---|
| 81 | </build> |
---|
| 82 | |
---|
| 83 | <developers> |
---|
| 84 | <developer> |
---|
| 85 | <id>hanly</id> |
---|
| 86 | <name>Hanly De Los Santos</name> |
---|
| 87 | <url>http://loci.wisc.edu/people/hanly-de-los-santos</url> |
---|
| 88 | <organization>UW-Madison LOCI</organization> |
---|
| 89 | <organizationUrl>http://loci.wisc.edu/</organizationUrl> |
---|
| 90 | <roles> |
---|
| 91 | <role>developer</role> |
---|
| 92 | </roles> |
---|
| 93 | <timezone>-6</timezone> |
---|
| 94 | </developer> |
---|
| 95 | <developer> |
---|
| 96 | <id>curtis</id> |
---|
| 97 | <name>Curtis Rueden</name> |
---|
| 98 | <email>ctrueden@wisc.edu</email> |
---|
| 99 | <url>http://loci.wisc.edu/people/curtis-rueden</url> |
---|
| 100 | <organization>UW-Madison LOCI</organization> |
---|
| 101 | <organizationUrl>http://loci.wisc.edu/</organizationUrl> |
---|
| 102 | <roles> |
---|
| 103 | <role>architect</role> |
---|
| 104 | <role>developer</role> |
---|
| 105 | </roles> |
---|
| 106 | <timezone>-6</timezone> |
---|
| 107 | <properties> |
---|
| 108 | <picUrl>http://loci.wisc.edu/files/loci/images/people/curtis-2010.jpg</picUrl> |
---|
| 109 | </properties> |
---|
| 110 | </developer> |
---|
| 111 | </developers> |
---|
| 112 | |
---|
| 113 | <!-- NB: for loci-base, in case of partial checkout --> |
---|
| 114 | <repositories> |
---|
| 115 | <repository> |
---|
| 116 | <id>loci.releases</id> |
---|
| 117 | <url>http://dev.loci.wisc.edu/maven2/releases</url> |
---|
| 118 | </repository> |
---|
| 119 | <repository> |
---|
| 120 | <id>loci.snapshots</id> |
---|
| 121 | <url>http://dev.loci.wisc.edu/maven2/snapshots</url> |
---|
| 122 | </repository> |
---|
| 123 | </repositories> |
---|
| 124 | |
---|
| 125 | </project> |
---|