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