]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.hibernate/pom.xml
git-svn-id: https://svn.argeo.org/slc/trunk@2483 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc
[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" 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.runtime</groupId>
5 <artifactId>argeo-slc-runtime</artifactId>
6 <version>0.11.4-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.support.hibernate</artifactId>
10 <name>Argeo SLC Support Hibernate</name>
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-compiler-plugin</artifactId>
16 </plugin>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-source-plugin</artifactId>
20 </plugin>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-surefire-plugin</artifactId>
24 </plugin>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-jar-plugin</artifactId>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.felix</groupId>
31 <artifactId>maven-bundle-plugin</artifactId>
32 <version>${version.maven-bundle-plugin}</version>
33 <configuration>
34 <instructions>
35 <Fragment-Host>org.argeo.slc.support.simple</Fragment-Host>
36 <Import-Package>*,org.hibernate.proxy</Import-Package>
37 </instructions>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42 <dependencies>
43 <dependency>
44 <groupId>org.argeo.slc.runtime</groupId>
45 <artifactId>org.argeo.slc.support.simple</artifactId>
46 </dependency>
47
48 <dependency>
49 <groupId>javax.transaction</groupId>
50 <artifactId>com.springsource.javax.transaction</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.hibernate</groupId>
54 <artifactId>com.springsource.org.hibernate</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>net.sourceforge.ehcache</groupId>
58 <artifactId>com.springsource.net.sf.ehcache</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>edu.emory.mathcs.backport</groupId>
62 <artifactId>
63 com.springsource.edu.emory.mathcs.backport
64 </artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.springframework</groupId>
68 <artifactId>org.springframework.orm</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>org.springframework</groupId>
72 <artifactId>org.springframework.jdbc</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.springframework</groupId>
76 <artifactId>org.springframework.context.support</artifactId>
77 </dependency>
78
79 <dependency>
80 <groupId>org.apache.commons</groupId>
81 <artifactId>com.springsource.org.apache.commons.dbcp</artifactId>
82 </dependency>
83
84 <!-- Test dependencies -->
85 <dependency>
86 <groupId>org.argeo.slc.runtime</groupId>
87 <artifactId>org.argeo.slc.support.castor</artifactId>
88 <scope>test</scope>
89 </dependency>
90
91 <dependency>
92 <groupId>org.hsqldb</groupId>
93 <artifactId>com.springsource.org.hsqldb</artifactId>
94 <scope>test</scope>
95 </dependency>
96 </dependencies>
97 </project>