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/maven-v4_0_0.xsd"> |
---|
6 | <modelVersion>4.0.0</modelVersion> |
---|
7 | |
---|
8 | <parent> |
---|
9 | <groupId>loci</groupId> |
---|
10 | <artifactId>loci-base-pom</artifactId> |
---|
11 | <version>1.06</version> |
---|
12 | </parent> |
---|
13 | |
---|
14 | <groupId>loci</groupId> |
---|
15 | <artifactId>jar2lib</artifactId> |
---|
16 | <version>1.0-SNAPSHOT</version> |
---|
17 | |
---|
18 | <name>Jar2Lib</name> |
---|
19 | <description>A command line tool for generating C++ proxy classes corresponding to a Java library.</description> |
---|
20 | <url>http://loci.wisc.edu/software/jar2lib</url> |
---|
21 | <inceptionYear>2010</inceptionYear> |
---|
22 | |
---|
23 | <licenses> |
---|
24 | <license> |
---|
25 | <name>BSD</name> |
---|
26 | <url>http://dev.loci.wisc.edu/svn/java/trunk/projects/jar2lib/LICENSE.txt</url> |
---|
27 | <distribution>repo</distribution> |
---|
28 | </license> |
---|
29 | </licenses> |
---|
30 | |
---|
31 | <dependencies> |
---|
32 | <dependency> |
---|
33 | <groupId>jace</groupId> |
---|
34 | <artifactId>jace</artifactId> |
---|
35 | <version>r61</version> |
---|
36 | </dependency> |
---|
37 | <dependency> |
---|
38 | <groupId>org.apache.velocity</groupId> |
---|
39 | <artifactId>velocity</artifactId> |
---|
40 | <version>1.6.4</version> |
---|
41 | </dependency> |
---|
42 | </dependencies> |
---|
43 | |
---|
44 | <build> |
---|
45 | <plugins> |
---|
46 | <plugin> |
---|
47 | <artifactId>maven-jar-plugin</artifactId> |
---|
48 | <configuration> |
---|
49 | <archive> |
---|
50 | <manifest> |
---|
51 | <mainClass>loci.jar2lib.Jar2Lib</mainClass> |
---|
52 | <packageName>loci.jar2lib</packageName> |
---|
53 | </manifest> |
---|
54 | </archive> |
---|
55 | </configuration> |
---|
56 | </plugin> |
---|
57 | <plugin> |
---|
58 | <artifactId>maven-assembly-plugin</artifactId> |
---|
59 | <configuration> |
---|
60 | <descriptors> |
---|
61 | <descriptor>src/main/assembly/deps.xml</descriptor> |
---|
62 | </descriptors> |
---|
63 | <archive> |
---|
64 | <manifest> |
---|
65 | <mainClass>loci.jar2lib.Jar2Lib</mainClass> |
---|
66 | </manifest> |
---|
67 | </archive> |
---|
68 | </configuration> |
---|
69 | </plugin> |
---|
70 | </plugins> |
---|
71 | </build> |
---|
72 | |
---|
73 | <developers> |
---|
74 | <developer> |
---|
75 | <id>curtis</id> |
---|
76 | <name>Curtis Rueden</name> |
---|
77 | <email>ctrueden@wisc.edu</email> |
---|
78 | <url>http://loci.wisc.edu/people/curtis-rueden</url> |
---|
79 | <organization>UW-Madison LOCI</organization> |
---|
80 | <organizationUrl>http://loci.wisc.edu/</organizationUrl> |
---|
81 | <roles> |
---|
82 | <role>architect</role> |
---|
83 | <role>developer</role> |
---|
84 | </roles> |
---|
85 | <timezone>-6</timezone> |
---|
86 | <properties> |
---|
87 | <picUrl>http://loci.wisc.edu/files/loci/images/people/curtis-2010.jpg</picUrl> |
---|
88 | </properties> |
---|
89 | </developer> |
---|
90 | </developers> |
---|
91 | |
---|
92 | <repositories> |
---|
93 | <!-- NB: for loci-base-pom --> |
---|
94 | <repository> |
---|
95 | <id>loci.releases</id> |
---|
96 | <url>http://dev.loci.wisc.edu:8081/content/repositories/releases</url> |
---|
97 | </repository> |
---|
98 | </repositories> |
---|
99 | |
---|
100 | </project> |
---|