[jboss-cvs] JBossAS SVN: r82512 - in projects/ejb3/trunk/docs/tutorial/singleinheritance: src/org/jboss/tutorial/singleinheritance and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 23 06:18:17 EST 2008


Author: jaikiran
Date: 2008-12-23 06:18:17 -0500 (Tue, 23 Dec 2008)
New Revision: 82512

Added:
   projects/ejb3/trunk/docs/tutorial/singleinheritance/pom.xml
   projects/ejb3/trunk/docs/tutorial/singleinheritance/src/org/jboss/tutorial/singleinheritance/client/
Removed:
   projects/ejb3/trunk/docs/tutorial/singleinheritance/src/org/jboss/tutorial/singleinheritance/Client/
Modified:
   projects/ejb3/trunk/docs/tutorial/singleinheritance/src/org/jboss/tutorial/singleinheritance/client/Client.java
Log:
Moved the client class to the correct package and included this tutorial asa Maven project

Added: projects/ejb3/trunk/docs/tutorial/singleinheritance/pom.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/singleinheritance/pom.xml	                        (rev 0)
+++ projects/ejb3/trunk/docs/tutorial/singleinheritance/pom.xml	2008-12-23 11:18:17 UTC (rev 82512)
@@ -0,0 +1,49 @@
+<?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.singleinheritance.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-singleinheritance</artifactId>
+  <version>0.1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <name>SingleInheritance in EJB3 Entities</name>
+  <url>http://labs.jboss.com/jbossejb3/</url>
+  <description>
+    Tutorial demonstrating SingleInheritance in EJB3 Entities
+  </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/singleinheritance/pom.xml
___________________________________________________________________
Name: svn:executable
   + *

Copied: projects/ejb3/trunk/docs/tutorial/singleinheritance/src/org/jboss/tutorial/singleinheritance/client (from rev 82510, projects/ejb3/trunk/docs/tutorial/singleinheritance/src/org/jboss/tutorial/singleinheritance/Client)

Modified: projects/ejb3/trunk/docs/tutorial/singleinheritance/src/org/jboss/tutorial/singleinheritance/client/Client.java
===================================================================
--- projects/ejb3/trunk/docs/tutorial/singleinheritance/src/org/jboss/tutorial/singleinheritance/Client/Client.java	2008-12-23 11:10:27 UTC (rev 82510)
+++ projects/ejb3/trunk/docs/tutorial/singleinheritance/src/org/jboss/tutorial/singleinheritance/client/Client.java	2008-12-23 11:18:17 UTC (rev 82512)
@@ -19,7 +19,7 @@
  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
-package org.jboss.tutorial.singleinheritance.Client;
+package org.jboss.tutorial.singleinheritance.client;
 
 
 import org.jboss.tutorial.singleinheritance.bean.Pet;




More information about the jboss-cvs-commits mailing list