]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.hibernate/pom.xml
Improve import maven dependencies
[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.1-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
19 <configuration>
20 <instructions>
21 <Fragment-Host>org.argeo.slc.core</Fragment-Host>
22 <Import-Package>!org.argeo.slc.core.*,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 <version>0.13.1-SNAPSHOT</version>
33 </dependency>
34
35 <dependency>
36 <groupId>org.hibernate</groupId>
37 <artifactId>com.springsource.org.hibernate</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>net.sourceforge.ehcache</groupId>
41 <artifactId>com.springsource.net.sf.ehcache</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>edu.emory.mathcs.backport</groupId>
45 <artifactId>
46 com.springsource.edu.emory.mathcs.backport
47 </artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.springframework</groupId>
51 <artifactId>org.springframework.orm</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.springframework</groupId>
55 <artifactId>org.springframework.jdbc</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.springframework</groupId>
59 <artifactId>org.springframework.context.support</artifactId>
60 </dependency>
61
62 <dependency>
63 <groupId>org.apache.commons</groupId>
64 <artifactId>com.springsource.org.apache.commons.dbcp</artifactId>
65 </dependency>
66
67 <!-- Unit Tests -->
68 <dependency>
69 <groupId>org.argeo.slc.runtime</groupId>
70 <artifactId>org.argeo.slc.unit</artifactId>
71 <scope>test</scope>
72 <version>0.13.1-SNAPSHOT</version>
73 </dependency>
74
75 <dependency>
76 <groupId>org.argeo.slc.runtime</groupId>
77 <artifactId>org.argeo.slc.support.castor</artifactId>
78 <scope>test</scope>
79 <version>0.13.1-SNAPSHOT</version>
80 </dependency>
81
82 <dependency>
83 <groupId>org.hsqldb</groupId>
84 <artifactId>com.springsource.org.hsqldb</artifactId>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>com.h2database</groupId>
89 <artifactId>com.springsource.org.h2</artifactId>
90 <scope>test</scope>
91 </dependency>
92
93 <dependency>
94 <groupId>javax.transaction</groupId>
95 <artifactId>com.springsource.javax.transaction</artifactId>
96 <scope>test</scope>
97 </dependency>
98
99 </dependencies>
100 </project>