mci/ws: use jersey version 1.0.1
[remote.git] / client / api / pom.xml
blob8f933cab1d203cc767293cac5adf7aee068aca4f
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project>
3         <modelVersion>4.0.0</modelVersion>
5         <parent>
6                 <groupId>remote</groupId>
7                 <artifactId>remote-client</artifactId>
8                 <version>2.0-snapshot</version>
9         </parent>
11         <artifactId>remote-client-api</artifactId>
12         <packaging>jar</packaging>
14         <name>Re·Mote Testbed Client API</name>
15         <description>
17                 The Re·Mote Testbed Client API consists of a set of
18                 packages that can be used by clients for connecting to
19                 testbeds using the Re·Mote Testbed Framework.
21         </description>
22         <scm>
23                 <connection>${scmrepo}</connection>
24                 <url>${scmweb}</url>
25         </scm>
27         <reporting>
28                 <plugins>
29                         <plugin>
30                                 <groupId>org.apache.maven.plugins</groupId>
31                                 <artifactId>maven-javadoc-plugin</artifactId>
32                                 <configuration>
33                                         <quiet>true</quiet>
34                                         <doctitle>${project.name} (${project.version})</doctitle>
35                                         <encoding>${project.build.sourceEncoding}</encoding>
36                                         <links>
37                                                 <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
38                                                 <link>http://junit.sourceforge.net/javadoc/</link>
39                                         </links>
40                                 </configuration>
41                                 <reportSets>
42                                         <reportSet>
43                                                 <reports>
44                                                         <report>javadoc</report>
45                                                 </reports>
46                                         </reportSet>
47                                 </reportSets>
48                         </plugin>
49                 </plugins>
50         </reporting>
52         <dependencies>
53                 <dependency>
54                         <groupId>${project.groupId}</groupId>
55                         <artifactId>remote-util</artifactId>
56                         <version>${project.version}</version>
57                 </dependency>
58         </dependencies>
59 </project>