Introduce argeo server hibernate
authorMathieu Baudier <mbaudier@argeo.org>
Tue, 13 Oct 2009 12:49:56 +0000 (12:49 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Tue, 13 Oct 2009 12:49:56 +0000 (12:49 +0000)
git-svn-id: https://svn.argeo.org/commons/trunk@3019 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

server/runtime/org.argeo.server.hibernate/pom.xml [new file with mode: 0644]

diff --git a/server/runtime/org.argeo.server.hibernate/pom.xml b/server/runtime/org.argeo.server.hibernate/pom.xml
new file mode 100644 (file)
index 0000000..f886e74
--- /dev/null
@@ -0,0 +1,66 @@
+<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">
+       <modelVersion>4.0.0</modelVersion>
+       <parent>
+               <groupId>org.argeo.commons.server</groupId>
+               <artifactId>runtime</artifactId>
+               <version>0.1.1-SNAPSHOT</version>
+               <relativePath>..</relativePath>
+       </parent>
+       <artifactId>org.argeo.server.hibernate</artifactId>
+       <name>Commons Server Hibernate</name>
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-source-plugin</artifactId>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-jar-plugin</artifactId>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.felix</groupId>
+                               <artifactId>maven-bundle-plugin</artifactId>
+                               <version>${version.maven-bundle-plugin}</version>
+                               <configuration>
+                                       <instructions>
+                                               <Export-Package>
+                                                       org.argeo.*
+                                               </Export-Package>
+                                       </instructions>
+                               </configuration>
+                       </plugin>
+               </plugins>
+       </build>
+       <dependencies>
+               <!-- Hibernate -->
+               <dependency>
+                       <groupId>org.argeo.commons.server</groupId>
+                       <artifactId>org.argeo.server.dep.hibernate</artifactId>
+                       <version>0.1.1-SNAPSHOT</version>
+                       <type>pom</type>
+               </dependency>
+
+               <dependency>
+                       <groupId>net.sourceforge.ehcache</groupId>
+                       <artifactId>com.springsource.net.sf.ehcache</artifactId>
+               </dependency>
+
+               <!-- Spring -->
+               <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>org.springframework.orm</artifactId>
+               </dependency>
+               <dependency>
+                       <!-- For EhCache support -->
+                       <groupId>org.springframework</groupId>
+                       <artifactId>org.springframework.context.support</artifactId>
+               </dependency>
+
+       </dependencies>
+</project>