Add some service to PublicationHouseServiceImpl file
[smart-bookstore.git] / ServiceImplementation / pom.xml
blob91f3ecfcfc618f5eb3b8670a4a92c071896a3dc7
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>ServiceImplementation</artifactId>
11     <name>ServiceImplementation</name>
12     <version>1.0-SNAPSHOT</version>
13     <url>http://maven.apache.org</url>
14     <dependencies>
15         <dependency>
16             <groupId>junit</groupId>
17             <artifactId>junit</artifactId>
18             <version>3.8.1</version>
19             <scope>test</scope>
20         </dependency>
21         <dependency>
22             <groupId>org.springframework</groupId>
23             <artifactId>spring</artifactId>
24             <version>2.5.6</version>
25         </dependency>
26         <dependency>
27             <groupId>com.smartitengineering.bookstore</groupId>
28             <artifactId>ServiceAPI</artifactId>
29             <version>1.0-SNAPSHOT</version>
30         </dependency>
31         <dependency>
32             <groupId>com.smartitengineering.bookstore</groupId>
33             <artifactId>domain</artifactId>
34             <version>1.0-SNAPSHOT</version>            
35         </dependency>
36         <dependency>
37             <groupId>c3p0</groupId>
38             <artifactId>c3p0</artifactId>
39             <version>0.9.1.2</version>            
40         </dependency>
41         <dependency>
42             <groupId>com.smartitengineering</groupId>
43             <artifactId>smart-hibernate-abstract-dao</artifactId>
44             <version>0.4-SNAPSHOT</version>
45         </dependency>
46         <dependency>
47             <groupId>org.apache.derby</groupId>
48             <artifactId>derby</artifactId>
49             <version>10.4.2.0</version>            
50         </dependency>
51     </dependencies>
52     <build>
53         <plugins>
54             <plugin>
55                 <artifactId>maven-compiler-plugin</artifactId>
56                 <inherited>true</inherited>
57                 <configuration>
58                     <source>1.5</source>
59                     <target>1.5</target>
60                 </configuration>
61             </plugin>
62         </plugins>
63     </build>
64 </project>