]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.hibernate/pom.xml
[maven-release-plugin] prepare for next development iteration
[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 <version>${project.version}</version>
49 </dependency>
50
51 <dependency>
52 <groupId>javax.transaction</groupId>
53 <artifactId>com.springsource.javax.transaction</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.hibernate</groupId>
57 <artifactId>com.springsource.org.hibernate</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>net.sourceforge.ehcache</groupId>
61 <artifactId>com.springsource.net.sf.ehcache</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>edu.emory.mathcs.backport</groupId>
65 <artifactId>
66 com.springsource.edu.emory.mathcs.backport
67 </artifactId>
68 </dependency>
69 <dependency>
70 <groupId>org.springframework</groupId>
71 <artifactId>org.springframework.orm</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.springframework</groupId>
75 <artifactId>org.springframework.jdbc</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.springframework</groupId>
79 <artifactId>org.springframework.context.support</artifactId>
80 </dependency>
81
82 <!-- Test dependencies -->
83 <dependency>
84 <groupId>org.argeo.slc.runtime</groupId>
85 <artifactId>org.argeo.slc.support.castor</artifactId>
86 <version>${project.version}</version>
87 <scope>test</scope>
88 </dependency>
89
90 <dependency>
91 <groupId>org.hsqldb</groupId>
92 <artifactId>com.springsource.org.hsqldb</artifactId>
93 <scope>test</scope>
94 </dependency>
95 </dependencies>
96 </project>