]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.hibernate/pom.xml
remove warning
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.hibernate / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>runtime</artifactId>
7 <version>0.13.0-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.hibernate</artifactId>
12 <name>SLC Support Hibernate</name>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>maven-bundle-plugin</artifactId>
18 <version>${version.maven-bundle-plugin}</version>
19 <configuration>
20 <instructions>
21 <Fragment-Host>org.argeo.slc.core</Fragment-Host>
22 <Import-Package>*,org.hibernate.proxy,javassist.util.proxy</Import-Package>
23 </instructions>
24 </configuration>
25 </plugin>
26 </plugins>
27 </build>
28 <dependencies>
29 <dependency>
30 <groupId>org.argeo.slc.runtime</groupId>
31 <artifactId>org.argeo.slc.core</artifactId>
32 </dependency>
33
34 <dependency>
35 <groupId>javax.transaction</groupId>
36 <artifactId>com.springsource.javax.transaction</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.hibernate</groupId>
40 <artifactId>com.springsource.org.hibernate</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>net.sourceforge.ehcache</groupId>
44 <artifactId>com.springsource.net.sf.ehcache</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>edu.emory.mathcs.backport</groupId>
48 <artifactId>
49 com.springsource.edu.emory.mathcs.backport
50 </artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.springframework</groupId>
54 <artifactId>org.springframework.orm</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.springframework</groupId>
58 <artifactId>org.springframework.jdbc</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>org.springframework</groupId>
62 <artifactId>org.springframework.context.support</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>org.apache.commons</groupId>
67 <artifactId>com.springsource.org.apache.commons.dbcp</artifactId>
68 </dependency>
69
70 <!-- Unit Tests -->
71 <dependency>
72 <groupId>org.argeo.slc.runtime</groupId>
73 <artifactId>org.argeo.slc.unit</artifactId>
74 <scope>test</scope>
75 </dependency>
76
77 <dependency>
78 <groupId>org.argeo.slc.runtime</groupId>
79 <artifactId>org.argeo.slc.support.castor</artifactId>
80 <scope>test</scope>
81 </dependency>
82
83 <dependency>
84 <groupId>org.hsqldb</groupId>
85 <artifactId>com.springsource.org.hsqldb</artifactId>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>com.h2database</groupId>
90 <artifactId>com.springsource.org.h2</artifactId>
91 <scope>test</scope>
92 </dependency>
93
94 </dependencies>
95 </project>