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-4.0.0.xsd"> |
---|
6 | <modelVersion>4.0.0</modelVersion> |
---|
7 | |
---|
8 | <parent> |
---|
9 | <groupId>com.github.scijava</groupId> |
---|
10 | <artifactId>pom-scijava</artifactId> |
---|
11 | <version>1.4</version> |
---|
12 | </parent> |
---|
13 | |
---|
14 | <groupId>loci</groupId> |
---|
15 | <artifactId>pom-loci</artifactId> |
---|
16 | <version>1.0-SNAPSHOT</version> |
---|
17 | <packaging>pom</packaging> |
---|
18 | |
---|
19 | <name>LOCI Software</name> |
---|
20 | <description>Umbrella project for LOCI software projects.</description> |
---|
21 | <url>http://loci.wisc.edu/software</url> |
---|
22 | |
---|
23 | <modules> |
---|
24 | <module>legacy/jvmlink</module> |
---|
25 | <module>legacy/multi-lut</module> |
---|
26 | <module>projects/cppwrap-maven-plugin</module> |
---|
27 | <module>projects/curve-fitter</module> |
---|
28 | <module>projects/deep-zoom-plugin</module> |
---|
29 | <module>projects/flow-cytometry</module> |
---|
30 | <module>projects/jar2lib</module> |
---|
31 | <module>projects/loci-checks</module> |
---|
32 | <module>projects/misc-plugins</module> |
---|
33 | <module>projects/prairie-ome-tiff</module> |
---|
34 | <!-- <module>projects/slim-curve</module> --> |
---|
35 | <module>projects/slim-plotter</module> |
---|
36 | <module>projects/slim-plugin</module> |
---|
37 | <module>projects/utils</module> |
---|
38 | <module>projects/visbio</module> |
---|
39 | <module>projects/visbio-plugins</module> |
---|
40 | <module>projects/wiscscan-java</module> |
---|
41 | </modules> |
---|
42 | |
---|
43 | <organization> |
---|
44 | <name>UW-Madison LOCI</name> |
---|
45 | <url>http://loci.wisc.edu/</url> |
---|
46 | </organization> |
---|
47 | |
---|
48 | <issueManagement> |
---|
49 | <system>Trac</system> |
---|
50 | <url>http://dev.loci.wisc.edu/trac/software/</url> |
---|
51 | </issueManagement> |
---|
52 | |
---|
53 | <ciManagement> |
---|
54 | <system>Jenkins</system> |
---|
55 | <url>http://dev.loci.wisc.edu:8080/</url> |
---|
56 | </ciManagement> |
---|
57 | |
---|
58 | <mailingLists> |
---|
59 | <mailingList> |
---|
60 | <name>LOCI Software</name> |
---|
61 | <subscribe>https://lists.wisc.edu/read/all_forums/subscribe?name=locisoftware</subscribe> |
---|
62 | <unsubscribe>https://lists.wisc.edu/read/?forum=locisoftware</unsubscribe> |
---|
63 | <post>locisoftware@lists.wisc.edu</post> |
---|
64 | <archive>https://lists.wisc.edu/read/?forum=locisoftware</archive> |
---|
65 | </mailingList> |
---|
66 | </mailingLists> |
---|
67 | |
---|
68 | <scm> |
---|
69 | <connection>scm:svn:http://dev.loci.wisc.edu/svn/software</connection> |
---|
70 | <developerConnection>scm:svn:http://dev.loci.wisc.edu/svn/software</developerConnection> |
---|
71 | <tag>HEAD</tag> |
---|
72 | <url>http://dev.loci.wisc.edu/svn/software</url> |
---|
73 | </scm> |
---|
74 | |
---|
75 | <!-- NB: for project parent --> |
---|
76 | <repositories> |
---|
77 | <repository> |
---|
78 | <id>imagej.releases</id> |
---|
79 | <url>http://maven.imagej.net/content/repositories/releases</url> |
---|
80 | </repository> |
---|
81 | <repository> |
---|
82 | <id>imagej.snapshots</id> |
---|
83 | <url>http://maven.imagej.net/content/repositories/snapshots</url> |
---|
84 | </repository> |
---|
85 | </repositories> |
---|
86 | |
---|
87 | </project> |
---|