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