Add example for Form submission w/out attachment
[smart-bookstore.git] / MockServiceImpl / pom.xml
blob5cae69ed26ac7071efaa8d661ebf62c19fe01f6a
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>MockServiceImpl</artifactId>
11     <name>MockServiceImpl</name>
12     <version>1.0-SNAPSHOT</version>
13     <url>http://maven.apache.org</url>
14     <build>
15         <plugins>
16             <plugin>
17                 <artifactId>maven-compiler-plugin</artifactId>
18                 <inherited>true</inherited>
19                 <configuration>
20                     <source>1.5</source>
21                     <target>1.5</target>
22                 </configuration>
23             </plugin>
24         </plugins>
25     </build>
26     <dependencies>
27         <dependency>
28             <groupId>junit</groupId>
29             <artifactId>junit</artifactId>
30             <version>3.8.1</version>
31             <scope>test</scope>
32         </dependency>
33         <dependency>
34             <groupId>com.smartitengineering.bookstore</groupId>
35             <artifactId>ServiceAPI</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>com.smartitengineering.bookstore</groupId>
40             <artifactId>domain</artifactId>
41             <version>${project.version}</version>
42         </dependency>
43     </dependencies>
44 </project>