[jboss-cvs] JBossAS SVN: r82523 - projects/ejb3/trunk/docs/tutorial/composite.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Dec 23 08:29:13 EST 2008
Author: jaikiran
Date: 2008-12-23 08:29:13 -0500 (Tue, 23 Dec 2008)
New Revision: 82523
Added:
projects/ejb3/trunk/docs/tutorial/composite/pom.xml
Log:
Commiting the missing pom.xml for the tutorial
Added: projects/ejb3/trunk/docs/tutorial/composite/pom.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/composite/pom.xml (rev 0)
+++ projects/ejb3/trunk/docs/tutorial/composite/pom.xml 2008-12-23 13:29:13 UTC (rev 82523)
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<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">
+
+
+
+
+
+ <!-- Model Version -->
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.jboss.ejb3</groupId>
+ <artifactId>jboss-ejb3-tutorial-common</artifactId>
+ <version>0.1.0-SNAPSHOT</version>
+ <relativePath>../common/</relativePath>
+ </parent>
+
+ <properties>
+ <ejb3.tutorial.client>org.jboss.tutorial.composite.client.Client</ejb3.tutorial.client>
+ <!-- Versions -->
+ <version.org.hibernate_hibernate-core>[3.3.0.GA,)</version.org.hibernate_hibernate-core>
+ </properties>
+
+
+ <artifactId>jboss-ejb3-tutorial-entity-compositekeys</artifactId>
+ <version>0.1.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <name>Entities with composite IDs in EJB3</name>
+ <url>http://labs.jboss.com/jbossejb3/</url>
+ <description>
+ Tutorial about composite IDs for entities in EJB3
+ </description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${version.org.hibernate_hibernate-core}</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+
+</project>
Property changes on: projects/ejb3/trunk/docs/tutorial/composite/pom.xml
___________________________________________________________________
Name: svn:executable
+ *
More information about the jboss-cvs-commits
mailing list