[7380] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
[6776] | 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-4.0.0.xsd"> |
---|
[7380] | 6 | <modelVersion>4.0.0</modelVersion> |
---|
[6776] | 7 | |
---|
| 8 | <groupId>loci</groupId> |
---|
[7595] | 9 | <artifactId>loci-base</artifactId> |
---|
| 10 | <version>1.0-SNAPSHOT</version> |
---|
[6776] | 11 | <packaging>pom</packaging> |
---|
[7380] | 12 | |
---|
[6776] | 13 | <name>LOCI Software</name> |
---|
[6907] | 14 | <description>Umbrella project for LOCI software projects.</description> |
---|
[6776] | 15 | <url>http://loci.wisc.edu/software</url> |
---|
| 16 | |
---|
| 17 | <modules> |
---|
[6902] | 18 | <module>legacy/jvmlink</module> |
---|
| 19 | <module>legacy/multi-lut</module> |
---|
[7623] | 20 | <module>projects/cppwrap-maven-plugin</module> |
---|
[6902] | 21 | <module>projects/curve-fitter</module> |
---|
[7590] | 22 | <module>projects/deep-zoom-plugin</module> |
---|
[6833] | 23 | <module>projects/flow-cytometry</module> |
---|
[6825] | 24 | <module>projects/jar2lib</module> |
---|
[6902] | 25 | <module>projects/loci-checks</module> |
---|
[6906] | 26 | <module>projects/misc-plugins</module> |
---|
[7590] | 27 | <!-- <module>projects/slim-curve</module> --> |
---|
[6833] | 28 | <module>projects/slim-plotter</module> |
---|
[7398] | 29 | <module>projects/slim-plugin</module> |
---|
[6833] | 30 | <module>projects/utils</module> |
---|
[6825] | 31 | <module>projects/visbio</module> |
---|
[7633] | 32 | <module>projects/wiscscan-java</module> |
---|
[6776] | 33 | </modules> |
---|
| 34 | |
---|
[7595] | 35 | <properties> |
---|
| 36 | <bio-formats.groupId>loci</bio-formats.groupId> |
---|
| 37 | <bio-formats.version>5.0-SNAPSHOT</bio-formats.version> |
---|
| 38 | <imagej.groupId>imagej</imagej.groupId> |
---|
| 39 | <imagej.version>2.0-SNAPSHOT</imagej.version> |
---|
[7615] | 40 | <imagej1.version>1.44o</imagej1.version> |
---|
[7595] | 41 | <!-- NB: Avoid platform encoding warning when copying resources. --> |
---|
| 42 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
| 43 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
---|
| 44 | </properties> |
---|
| 45 | |
---|
| 46 | <build> |
---|
| 47 | <defaultGoal>install</defaultGoal> |
---|
| 48 | <extensions> |
---|
| 49 | <extension> |
---|
| 50 | <groupId>org.apache.maven.wagon</groupId> |
---|
| 51 | <artifactId>wagon-webdav</artifactId> |
---|
| 52 | <version>1.0-beta-2</version> |
---|
| 53 | </extension> |
---|
| 54 | </extensions> |
---|
| 55 | <pluginManagement> |
---|
| 56 | <plugins> |
---|
| 57 | <plugin> |
---|
| 58 | <artifactId>maven-assembly-plugin</artifactId> |
---|
| 59 | </plugin> |
---|
| 60 | </plugins> |
---|
| 61 | </pluginManagement> |
---|
| 62 | <plugins> |
---|
| 63 | <plugin> |
---|
| 64 | <artifactId>maven-compiler-plugin</artifactId> |
---|
| 65 | <configuration> |
---|
[7624] | 66 | <source>1.6</source> |
---|
| 67 | <target>1.6</target> |
---|
[7595] | 68 | </configuration> |
---|
| 69 | </plugin> |
---|
| 70 | <plugin> |
---|
| 71 | <artifactId>maven-jar-plugin</artifactId> |
---|
| 72 | <configuration> |
---|
| 73 | <archive> |
---|
| 74 | <manifest> |
---|
| 75 | <addClasspath>true</addClasspath> |
---|
| 76 | </manifest> |
---|
| 77 | </archive> |
---|
| 78 | </configuration> |
---|
| 79 | </plugin> |
---|
| 80 | <plugin> |
---|
| 81 | <artifactId>maven-assembly-plugin</artifactId> |
---|
| 82 | </plugin> |
---|
| 83 | </plugins> |
---|
| 84 | </build> |
---|
| 85 | |
---|
| 86 | <reporting> |
---|
| 87 | <plugins> |
---|
| 88 | <!-- NB: Generate javadocs as part of site generation. --> |
---|
| 89 | <plugin> |
---|
| 90 | <artifactId>maven-javadoc-plugin</artifactId> |
---|
| 91 | </plugin> |
---|
| 92 | </plugins> |
---|
| 93 | </reporting> |
---|
| 94 | |
---|
| 95 | <organization> |
---|
| 96 | <name>UW-Madison LOCI</name> |
---|
| 97 | <url>http://loci.wisc.edu/</url> |
---|
| 98 | </organization> |
---|
| 99 | |
---|
| 100 | <issueManagement> |
---|
| 101 | <system>Trac</system> |
---|
| 102 | <url>http://dev.loci.wisc.edu/trac/software/</url> |
---|
| 103 | </issueManagement> |
---|
| 104 | |
---|
| 105 | <ciManagement> |
---|
| 106 | <system>Hudson</system> |
---|
| 107 | <url>http://dev.loci.wisc.edu:8080/</url> |
---|
| 108 | </ciManagement> |
---|
| 109 | |
---|
| 110 | <mailingLists> |
---|
| 111 | <mailingList> |
---|
| 112 | <name>LOCI Software</name> |
---|
| 113 | <subscribe>https://lists.wisc.edu/read/all_forums/subscribe?name=locisoftware</subscribe> |
---|
| 114 | <unsubscribe>https://lists.wisc.edu/read/?forum=locisoftware</unsubscribe> |
---|
| 115 | <post>locisoftware@lists.wisc.edu</post> |
---|
| 116 | <archive>https://lists.wisc.edu/read/?forum=locisoftware</archive> |
---|
| 117 | </mailingList> |
---|
| 118 | </mailingLists> |
---|
| 119 | |
---|
| 120 | <scm> |
---|
| 121 | <connection>scm:svn:http://dev.loci.wisc.edu/svn/software</connection> |
---|
| 122 | <developerConnection>scm:svn:http://dev.loci.wisc.edu/svn/software</developerConnection> |
---|
| 123 | <tag>HEAD</tag> |
---|
| 124 | <url>http://dev.loci.wisc.edu/svn/software</url> |
---|
| 125 | </scm> |
---|
| 126 | |
---|
[6776] | 127 | <repositories> |
---|
[7595] | 128 | <!-- NB: for loci projects --> |
---|
[6776] | 129 | <repository> |
---|
| 130 | <id>loci.releases</id> |
---|
[7612] | 131 | <url>http://dev.loci.wisc.edu/maven2/releases</url> |
---|
[6776] | 132 | </repository> |
---|
[7595] | 133 | <repository> |
---|
| 134 | <id>loci.snapshots</id> |
---|
[7612] | 135 | <url>http://dev.loci.wisc.edu/maven2/snapshots</url> |
---|
[7595] | 136 | </repository> |
---|
| 137 | <!-- NB: for various dependencies --> |
---|
| 138 | <repository> |
---|
| 139 | <id>loci.thirdparty</id> |
---|
[7612] | 140 | <url>http://dev.loci.wisc.edu/maven2/thirdparty</url> |
---|
[7595] | 141 | </repository> |
---|
| 142 | <!-- NB: for netcdf-java --> |
---|
| 143 | <repository> |
---|
| 144 | <id>unifi.it</id> |
---|
| 145 | <url>http://ulisse.pin.unifi.it:8081/nexus/content/groups/open.repos</url> |
---|
| 146 | </repository> |
---|
| 147 | <!-- NB: for sezpoz --> |
---|
| 148 | <repository> |
---|
| 149 | <id>java.net</id> |
---|
| 150 | <url>http://download.java.net/maven/2</url> |
---|
| 151 | </repository> |
---|
| 152 | <!-- NB: for netbeans --> |
---|
| 153 | <repository> |
---|
| 154 | <id>netbeans</id> |
---|
| 155 | <name>Repository for hosting NetBeans API artifacts</name> |
---|
| 156 | <url>http://bits.netbeans.org/maven2</url> |
---|
| 157 | </repository> |
---|
[6776] | 158 | </repositories> |
---|
| 159 | |
---|
[7595] | 160 | <pluginRepositories> |
---|
| 161 | <!-- NB: for maven-nar-plugin --> |
---|
| 162 | <pluginRepository> |
---|
| 163 | <id>loci.snapshots</id> |
---|
[7612] | 164 | <url>http://dev.loci.wisc.edu/maven2/snapshots</url> |
---|
[7595] | 165 | </pluginRepository> |
---|
| 166 | </pluginRepositories> |
---|
| 167 | |
---|
| 168 | <distributionManagement> |
---|
| 169 | <repository> |
---|
| 170 | <id>loci.releases</id> |
---|
| 171 | <name>LOCI Releases Repository</name> |
---|
| 172 | <url>dav:http://dev.loci.wisc.edu:8081/content/repositories/releases</url> |
---|
| 173 | </repository> |
---|
| 174 | <snapshotRepository> |
---|
| 175 | <id>loci.snapshots</id> |
---|
| 176 | <name>LOCI Snapshots Repository</name> |
---|
| 177 | <url>dav:http://dev.loci.wisc.edu:8081/content/repositories/snapshots</url> |
---|
| 178 | </snapshotRepository> |
---|
| 179 | </distributionManagement> |
---|
| 180 | |
---|
[6776] | 181 | </project> |
---|