]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.hibernate/pom.xml
5276bab351507faa7bd46ac86e224d0d6687efd6
[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>argeo-slc</artifactId>
7 <version>0.11.2-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.hibernate</artifactId>
12 <name>Argeo SLC Support Hibernate</name>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-source-plugin</artifactId>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-surefire-plugin</artifactId>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-jar-plugin</artifactId>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.felix</groupId>
33 <artifactId>maven-bundle-plugin</artifactId>
34 <version>${version.maven-bundle-plugin}</version>
35 <configuration>
36 <instructions>
37 <Export-Package>
38 org.argeo.slc.hibernate.*
39 </Export-Package>
40 </instructions>
41 </configuration>
42 </plugin>
43 </plugins>
44 </build>
45 <dependencies>
46 <dependency>
47 <groupId>org.argeo.slc.runtime</groupId>
48 <artifactId>org.argeo.slc.support.simple</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51
52 <dependency>
53 <groupId>javax.transaction</groupId>
54 <artifactId>com.springsource.javax.transaction</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.hibernate</groupId>
58 <artifactId>com.springsource.org.hibernate</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>net.sourceforge.ehcache</groupId>
62 <artifactId>com.springsource.net.sf.ehcache</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>edu.emory.mathcs.backport</groupId>
66 <artifactId>
67 com.springsource.edu.emory.mathcs.backport
68 </artifactId>
69 </dependency>
70 <dependency>
71 <groupId>org.springframework</groupId>
72 <artifactId>org.springframework.orm</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.springframework</groupId>
76 <artifactId>org.springframework.jdbc</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.springframework</groupId>
80 <artifactId>org.springframework.context.support</artifactId>
81 </dependency>
82
83 <!-- Test dependencies -->
84 <dependency>
85 <groupId>org.argeo.slc.runtime</groupId>
86 <artifactId>org.argeo.slc.support.castor</artifactId>
87 <version>${project.version}</version>
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>