[jboss-cvs] JBossAS SVN: r73398 - in projects/ejb3/trunk: common and 4 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed May 14 18:32:05 EDT 2008


Author: ALRubinger
Date: 2008-05-14 18:32:05 -0400 (Wed, 14 May 2008)
New Revision: 73398

Added:
   projects/ejb3/trunk/common/
   projects/ejb3/trunk/common/.classpath
   projects/ejb3/trunk/common/.project
   projects/ejb3/trunk/common/.settings/
   projects/ejb3/trunk/common/.settings/org.eclipse.jdt.core.prefs
   projects/ejb3/trunk/common/pom.xml
   projects/ejb3/trunk/common/src/
   projects/ejb3/trunk/common/src/main/
   projects/ejb3/trunk/common/src/main/java/
   projects/ejb3/trunk/common/src/main/resources/
   projects/ejb3/trunk/common/src/test/
   projects/ejb3/trunk/common/src/test/java/
   projects/ejb3/trunk/common/src/test/resources/
Log:
[EJBTHREE-1363] Add EJB3 Commoon Skeleton


Property changes on: projects/ejb3/trunk/common
___________________________________________________________________
Name: svn:ignore
   + target


Added: projects/ejb3/trunk/common/.classpath
===================================================================
--- projects/ejb3/trunk/common/.classpath	                        (rev 0)
+++ projects/ejb3/trunk/common/.classpath	2008-05-14 22:32:05 UTC (rev 73398)
@@ -0,0 +1,9 @@
+<classpath>
+  <classpathentry kind="src" path="src/main/java"/>
+  <classpathentry kind="src" path="src/main/resources" excluding="**/*.java"/>
+  <classpathentry kind="src" path="src/test/java" output="target/tests-classes"/>
+  <classpathentry kind="src" path="src/test/resources" output="target/tests-classes" excluding="**/*.java"/>
+  <classpathentry kind="output" path="target/classes"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+  <classpathentry kind="var" path="M2_REPO/junit/junit/4.4/junit-4.4.jar" sourcepath="M2_REPO/junit/junit/4.4/junit-4.4-sources.jar"/>
+</classpath>
\ No newline at end of file

Added: projects/ejb3/trunk/common/.project
===================================================================
--- projects/ejb3/trunk/common/.project	                        (rev 0)
+++ projects/ejb3/trunk/common/.project	2008-05-14 22:32:05 UTC (rev 73398)
@@ -0,0 +1,13 @@
+<projectDescription>
+  <name>jboss-ejb3-common</name>
+  <comment>JBoss EJB 3.0 Utilities Common to all Components</comment>
+  <projects/>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file

Added: projects/ejb3/trunk/common/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- projects/ejb3/trunk/common/.settings/org.eclipse.jdt.core.prefs	                        (rev 0)
+++ projects/ejb3/trunk/common/.settings/org.eclipse.jdt.core.prefs	2008-05-14 22:32:05 UTC (rev 73398)
@@ -0,0 +1,5 @@
+#Wed May 14 18:30:31 EDT 2008
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.source=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5

Added: projects/ejb3/trunk/common/pom.xml
===================================================================
--- projects/ejb3/trunk/common/pom.xml	                        (rev 0)
+++ projects/ejb3/trunk/common/pom.xml	2008-05-14 22:32:05 UTC (rev 73398)
@@ -0,0 +1,40 @@
+<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">
+
+  <!-- Define Parent -->
+  <parent>
+    <artifactId>jboss-ejb3-build</artifactId>
+    <groupId>org.jboss.ejb3</groupId>
+    <version>0.13.3</version>
+    <relativePath>../build/pom.xml</relativePath>
+  </parent>
+
+  <!-- Maven POM Model Version -->
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- Artifact Information -->
+  <groupId>org.jboss.ejb3</groupId>
+  <artifactId>jboss-ejb3-common</artifactId>
+  <version>0.1.0-SNAPSHOT</version>
+  <name>JBoss EJB 3.0 Common Utilities</name>
+  <description>JBoss EJB 3.0 Utilities Common to all Components</description>
+  <url>http://www.jboss.org/jbossejb3/</url>
+
+  <!-- Dependencies -->
+
+  <!-- 
+    
+    Version information is centralized in 
+    the Parent Build POM
+    
+  -->
+
+  <dependencies>
+
+    <!-- JUnit -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+
+  </dependencies>
+</project>




More information about the jboss-cvs-commits mailing list