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>pom-loci</artifactId> |
---|
11 | <version>1.0</version> |
---|
12 | <relativePath>../..</relativePath> |
---|
13 | </parent> |
---|
14 | |
---|
15 | <artifactId>slim-curve</artifactId> |
---|
16 | <packaging>nar</packaging> |
---|
17 | |
---|
18 | <name>SLIM-Curve</name> |
---|
19 | <description>A package for exponential curve fitting of combined spectral lifetime image data.</description> |
---|
20 | <inceptionYear>2010</inceptionYear> |
---|
21 | |
---|
22 | <licenses> |
---|
23 | <license> |
---|
24 | <name>BSD</name> |
---|
25 | <url>http://dev.loci.wisc.edu/svn/software/trunk/projects/slim-curve/LICENSE.txt</url> |
---|
26 | <distribution>repo</distribution> |
---|
27 | </license> |
---|
28 | </licenses> |
---|
29 | |
---|
30 | <build> |
---|
31 | <plugins> |
---|
32 | <plugin> |
---|
33 | <artifactId>maven-nar-plugin</artifactId> |
---|
34 | <version>${nar.version}</version> |
---|
35 | <extensions>true</extensions> |
---|
36 | <configuration> |
---|
37 | <libraries> |
---|
38 | <library> |
---|
39 | <type>shared</type> |
---|
40 | </library> |
---|
41 | </libraries> |
---|
42 | </configuration> |
---|
43 | </plugin> |
---|
44 | </plugins> |
---|
45 | </build> |
---|
46 | |
---|
47 | <developers> |
---|
48 | <developer> |
---|
49 | <id>barber</id> |
---|
50 | <name>Paul Barber</name> |
---|
51 | <email>Paul.Barber@rob.ox.ac.uk</email> |
---|
52 | <url>http://users.ox.ac.uk/~raob0009/</url> |
---|
53 | <organization>Gray Institute for Radiation Oncology & Biology</organization> |
---|
54 | <organizationUrl>http://www.rob.ox.ac.uk/</organizationUrl> |
---|
55 | <roles> |
---|
56 | <role>architect</role> |
---|
57 | <role>developer</role> |
---|
58 | </roles> |
---|
59 | <timezone>+0</timezone> |
---|
60 | <properties> |
---|
61 | <picUrl>http://www.loci.wisc.edu/files/loci/images/people/barber.png</picUrl> |
---|
62 | </properties> |
---|
63 | </developer> |
---|
64 | <developer> |
---|
65 | <id>aivar</id> |
---|
66 | <name>Aivar Grislis</name> |
---|
67 | <email>grislis@wisc.edu</email> |
---|
68 | <url>http://loci.wisc.edu/people/aivar-grislis</url> |
---|
69 | <organization>UW-Madison LOCI</organization> |
---|
70 | <organizationUrl>http://loci.wisc.edu/</organizationUrl> |
---|
71 | <roles> |
---|
72 | <role>developer</role> |
---|
73 | </roles> |
---|
74 | <timezone>-6</timezone> |
---|
75 | <properties> |
---|
76 | <picUrl>http://loci.wisc.edu/files/loci/images/people/Aivar.jpg</picUrl> |
---|
77 | </properties> |
---|
78 | </developer> |
---|
79 | <developer> |
---|
80 | <id>curtis</id> |
---|
81 | <name>Curtis Rueden</name> |
---|
82 | <email>ctrueden@wisc.edu</email> |
---|
83 | <url>http://loci.wisc.edu/people/curtis-rueden</url> |
---|
84 | <organization>UW-Madison LOCI</organization> |
---|
85 | <organizationUrl>http://loci.wisc.edu/</organizationUrl> |
---|
86 | <roles> |
---|
87 | <role>architect</role> |
---|
88 | </roles> |
---|
89 | <timezone>-6</timezone> |
---|
90 | <properties> |
---|
91 | <picUrl>http://loci.wisc.edu/files/loci/images/people/curtis-2010.jpg</picUrl> |
---|
92 | </properties> |
---|
93 | </developer> |
---|
94 | </developers> |
---|
95 | |
---|
96 | <!-- NB: for project parent, in case of partial checkout --> |
---|
97 | <repositories> |
---|
98 | <repository> |
---|
99 | <id>loci.releases</id> |
---|
100 | <url>http://dev.loci.wisc.edu/maven2/releases</url> |
---|
101 | </repository> |
---|
102 | <repository> |
---|
103 | <id>loci.snapshots</id> |
---|
104 | <url>http://dev.loci.wisc.edu/maven2/snapshots</url> |
---|
105 | </repository> |
---|
106 | </repositories> |
---|
107 | |
---|
108 | </project> |
---|