Add example for Form submission w/out attachment
[smart-bookstore.git] / WebServiceResource / pom.xml
blob2d586f44585ee1c3705ffa0d17abb4e342385408
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project>
3     <parent>
4         <artifactId>SmartBookStore</artifactId>
5         <groupId>com.smartitengineering</groupId>
6         <version>1.0-SNAPSHOT</version>
7     </parent>
8     <modelVersion>4.0.0</modelVersion>
9     <groupId>com.smartitengineering.bookstore</groupId>
10     <artifactId>WebServiceResource</artifactId>
11     <name>WebServiceResource</name>
12     <version>1.0-SNAPSHOT</version>
13     <url>http://maven.apache.org</url>
14     <build>
15         <finalName>bookstore</finalName>
16         <plugins>
17             <plugin>
18                 <artifactId>maven-compiler-plugin</artifactId>
19                 <inherited>true</inherited>
20                 <configuration>
21                     <source>1.5</source>
22                     <target>1.5</target>
23                 </configuration>
24             </plugin>
25         </plugins>
26     </build>
27     <dependencies>
28         <dependency>
29             <groupId>junit</groupId>
30             <artifactId>junit</artifactId>
31             <version>3.8.1</version>
32             <scope>test</scope>
33         </dependency>
34         <dependency>
35             <groupId>com.sun.jersey.contribs</groupId>
36             <artifactId>jersey-multipart</artifactId>
37             <version>${jersey.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>com.smartitengineering.bookstore</groupId>
41             <artifactId>ServiceAPI</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>com.smartitengineering.bookstore</groupId>
46             <artifactId>domain</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>com.smartitengineering.bookstore</groupId>
51             <artifactId>WebServiceElement</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>javax.ws.rs</groupId>
56             <artifactId>jsr311-api</artifactId>
57             <version>1.0</version>
58         </dependency>
59         <dependency>
60             <groupId>org.springframework</groupId>
61             <artifactId>spring</artifactId>
62             <version>2.5.6</version>
63         </dependency>
64     </dependencies>
65 </project>