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>curve-fitter</artifactId> |
---|
15 | |
---|
16 | <name>Curve Fitter library</name> |
---|
17 | <description>A library for fitting single- or multi-component exponential decay curves to sample data.</description> |
---|
18 | <inceptionYear>2010</inceptionYear> |
---|
19 | |
---|
20 | <licenses> |
---|
21 | <license> |
---|
22 | <name>BSD</name> |
---|
23 | <url>http://dev.loci.wisc.edu/svn/software/trunk/projects/curve-fitter/LICENSE.txt</url> |
---|
24 | <distribution>repo</distribution> |
---|
25 | </license> |
---|
26 | </licenses> |
---|
27 | |
---|
28 | <dependencies> |
---|
29 | <dependency> |
---|
30 | <groupId>${imagej.groupId}</groupId> |
---|
31 | <artifactId>ij</artifactId> |
---|
32 | <version>${imagej1.version}</version> |
---|
33 | </dependency> |
---|
34 | <dependency> |
---|
35 | <groupId>${imagej.groupId}</groupId> |
---|
36 | <artifactId>native-library-util</artifactId> |
---|
37 | <version>${imagej.version}</version> |
---|
38 | </dependency> |
---|
39 | <!-- TODO: define a real POM for akutan project |
---|
40 | See: http://sourceforge.net/projects/akutan/ --> |
---|
41 | <dependency> |
---|
42 | <groupId>akutan</groupId> |
---|
43 | <artifactId>akutan</artifactId> |
---|
44 | <version>1.0</version> |
---|
45 | </dependency> |
---|
46 | <dependency> |
---|
47 | <groupId>colt</groupId> |
---|
48 | <artifactId>colt</artifactId> |
---|
49 | <version>1.2.0</version> |
---|
50 | </dependency> |
---|
51 | <dependency> |
---|
52 | <groupId>jaolho.data</groupId> |
---|
53 | <artifactId>lma</artifactId> |
---|
54 | <version>1.3</version> |
---|
55 | </dependency> |
---|
56 | <dependency> |
---|
57 | <groupId>net.java.dev.jna</groupId> |
---|
58 | <artifactId>jna</artifactId> |
---|
59 | <version>3.2.2</version> |
---|
60 | </dependency> |
---|
61 | <dependency> |
---|
62 | <groupId>loci</groupId> |
---|
63 | <artifactId>slim-curve</artifactId> |
---|
64 | <version>1.0-SNAPSHOT</version> |
---|
65 | <type>nar</type> |
---|
66 | </dependency> |
---|
67 | </dependencies> |
---|
68 | |
---|
69 | <build> |
---|
70 | <plugins> |
---|
71 | <plugin> |
---|
72 | <artifactId>maven-jar-plugin</artifactId> |
---|
73 | <configuration> |
---|
74 | <archive> |
---|
75 | <manifest> |
---|
76 | <packageName>loci.curvefitter</packageName> |
---|
77 | </manifest> |
---|
78 | </archive> |
---|
79 | </configuration> |
---|
80 | </plugin> |
---|
81 | </plugins> |
---|
82 | </build> |
---|
83 | |
---|
84 | <profiles> |
---|
85 | <profile> |
---|
86 | <id>with-libs</id> |
---|
87 | <build> |
---|
88 | <plugins> |
---|
89 | <plugin> |
---|
90 | <artifactId>maven-nar-plugin</artifactId> |
---|
91 | <version>${nar.version}</version> |
---|
92 | <extensions>true</extensions> <!-- what does this do? --> |
---|
93 | <configuration> |
---|
94 | <ignore>true</ignore> |
---|
95 | <classifiers> |
---|
96 | <!--<classifier>x86-Windows-msvc-shared</classifier>--> |
---|
97 | <classifier>x86_64-MacOSX-gpp-shared</classifier> |
---|
98 | <classifier>amd64-Linux-g++-shared</classifier> |
---|
99 | </classifiers> |
---|
100 | <libraries> |
---|
101 | <library> |
---|
102 | <type>shared</type> |
---|
103 | </library> |
---|
104 | </libraries> |
---|
105 | </configuration> |
---|
106 | <executions> |
---|
107 | <execution> |
---|
108 | <goals> |
---|
109 | <goal>nar-download</goal> |
---|
110 | <goal>nar-unpack</goal> |
---|
111 | <goal>nar-assembly</goal> |
---|
112 | </goals> |
---|
113 | </execution> |
---|
114 | </executions> |
---|
115 | </plugin> |
---|
116 | <plugin> |
---|
117 | <artifactId>maven-assembly-plugin</artifactId> |
---|
118 | <configuration> |
---|
119 | <descriptors> |
---|
120 | <descriptor>src/main/assembly/with-libs.xml</descriptor> |
---|
121 | </descriptors> |
---|
122 | </configuration> |
---|
123 | <executions> |
---|
124 | <execution> |
---|
125 | <id>make-assembly</id> |
---|
126 | <phase>package</phase> |
---|
127 | <goals> |
---|
128 | <goal>single</goal> |
---|
129 | </goals> |
---|
130 | </execution> |
---|
131 | </executions> |
---|
132 | </plugin> |
---|
133 | </plugins> |
---|
134 | </build> |
---|
135 | </profile> |
---|
136 | </profiles> |
---|
137 | |
---|
138 | <developers> |
---|
139 | <developer> |
---|
140 | <id>aivar</id> |
---|
141 | <name>Aivar Grislis</name> |
---|
142 | <email>grislis@wisc.edu</email> |
---|
143 | <url>http://loci.wisc.edu/people/aivar-grislis</url> |
---|
144 | <organization>UW-Madison LOCI</organization> |
---|
145 | <organizationUrl>http://loci.wisc.edu/</organizationUrl> |
---|
146 | <roles> |
---|
147 | <role>architect</role> |
---|
148 | <role>developer</role> |
---|
149 | </roles> |
---|
150 | <timezone>-6</timezone> |
---|
151 | <properties> |
---|
152 | <picUrl>http://loci.wisc.edu/files/loci/images/people/Aivar.jpg</picUrl> |
---|
153 | </properties> |
---|
154 | </developer> |
---|
155 | </developers> |
---|
156 | |
---|
157 | <!-- NB: for loci-base, in case of partial checkout --> |
---|
158 | <repositories> |
---|
159 | <repository> |
---|
160 | <id>loci.releases</id> |
---|
161 | <url>http://dev.loci.wisc.edu/maven2/releases</url> |
---|
162 | </repository> |
---|
163 | <repository> |
---|
164 | <id>loci.snapshots</id> |
---|
165 | <url>http://dev.loci.wisc.edu/maven2/snapshots</url> |
---|
166 | </repository> |
---|
167 | </repositories> |
---|
168 | |
---|
169 | </project> |
---|