[jboss-cvs] JBossAS SVN: r58806 - in projects/ejb3/trunk/ejb3x: . .settings

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Dec 1 08:25:17 EST 2006


Author: wolfc
Date: 2006-12-01 08:25:10 -0500 (Fri, 01 Dec 2006)
New Revision: 58806

Added:
   projects/ejb3/trunk/ejb3x/.settings/
   projects/ejb3/trunk/ejb3x/.settings/org.eclipse.jdt.core.prefs
   projects/ejb3/trunk/ejb3x/pom.xml
Modified:
   projects/ejb3/trunk/ejb3x/
   projects/ejb3/trunk/ejb3x/.classpath
   projects/ejb3/trunk/ejb3x/.project
Log:
mavenized


Property changes on: projects/ejb3/trunk/ejb3x
___________________________________________________________________
Name: svn:ignore
   - output
build.log

   + output
build.log
target


Modified: projects/ejb3/trunk/ejb3x/.classpath
===================================================================
--- projects/ejb3/trunk/ejb3x/.classpath	2006-12-01 12:47:44 UTC (rev 58805)
+++ projects/ejb3/trunk/ejb3x/.classpath	2006-12-01 13:25:10 UTC (rev 58806)
@@ -1,11 +1,6 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <classpath>
-	<classpathentry kind="src" path="src/main"/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
-	<classpathentry kind="lib" path="/thirdparty/sun-servlet/lib/servlet-api.jar"/>
-	<classpathentry kind="lib" path="/thirdparty/sun-jaf/lib/activation.jar"/>
-	<classpathentry kind="src" path="/j2ee"/>
- <classpathentry kind="lib" path="/thirdparty/jboss/common-core/lib/jboss-common-core.jar"/>
- <classpathentry kind="lib" path="/thirdparty/jboss/common-logging-spi/lib/jboss-logging-spi.jar"/>
-	<classpathentry kind="output" path="output/eclipse-classes"/>
-</classpath>
+  <classpathentry kind="src" path="src/main"/>
+  <classpathentry kind="output" path="target/eclipse-classes"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+  <classpathentry kind="var" path="M2_REPO/jboss/jboss-j2ee/4.0.2/jboss-j2ee-4.0.2.jar"/>
+</classpath>
\ No newline at end of file

Modified: projects/ejb3/trunk/ejb3x/.project
===================================================================
--- projects/ejb3/trunk/ejb3x/.project	2006-12-01 12:47:44 UTC (rev 58805)
+++ projects/ejb3/trunk/ejb3x/.project	2006-12-01 13:25:10 UTC (rev 58806)
@@ -1,17 +1,14 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <projectDescription>
-	<name>ejb3x</name>
-	<comment></comment>
-	<projects>
-	</projects>
-	<buildSpec>
-		<buildCommand>
-			<name>org.eclipse.jdt.core.javabuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-	</buildSpec>
-	<natures>
-		<nature>org.eclipse.jdt.core.javanature</nature>
-	</natures>
-</projectDescription>
+  <name>jboss-ejb3x</name>
+  <comment>The Java EJB 3.0 API classes</comment>
+  <projects/>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+      <arguments/>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file

Added: projects/ejb3/trunk/ejb3x/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- projects/ejb3/trunk/ejb3x/.settings/org.eclipse.jdt.core.prefs	2006-12-01 12:47:44 UTC (rev 58805)
+++ projects/ejb3/trunk/ejb3x/.settings/org.eclipse.jdt.core.prefs	2006-12-01 13:25:10 UTC (rev 58806)
@@ -0,0 +1,5 @@
+#Fri Dec 01 14:19:26 CET 2006
+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/ejb3x/pom.xml
===================================================================
--- projects/ejb3/trunk/ejb3x/pom.xml	2006-12-01 12:47:44 UTC (rev 58805)
+++ projects/ejb3/trunk/ejb3x/pom.xml	2006-12-01 13:25:10 UTC (rev 58806)
@@ -0,0 +1,102 @@
+<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>
+  <groupId>jboss</groupId>
+  <artifactId>jboss-ejb3x</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0.0.CR1</version>
+  <name>JBoss EJB 3.0 API</name>
+  <url>http://www.jboss.org</url>
+  <description>The Java EJB 3.0 API classes</description>
+  <licenses>
+   <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+   </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Inc. Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.com/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+     <pluginRepository>
+        <id>jbosspluginrepo</id>
+        <name>jboss plugin repository</name>
+        <url>http://repository.jboss.com/maven2</url>
+        <layout>default</layout>
+        <snapshots>
+           <enabled>false</enabled>
+           <updatePolicy>never</updatePolicy>
+        </snapshots>
+     </pluginRepository>
+      <pluginRepository>
+        <id>central</id>
+        <name>LSU maven2 mirror</name>
+        <url>http://ibiblio.lsu.edu/main/pub/packages/maven2</url>
+        <layout>default</layout>
+        <snapshots>
+           <enabled>false</enabled>
+           <updatePolicy>never</updatePolicy>
+        </snapshots>
+     </pluginRepository>
+  </pluginRepositories>
+
+  
+  <build>
+    <sourceDirectory>src/main</sourceDirectory>
+    <finalName>${artifactId}</finalName>
+    <plugins>
+  
+
+    
+      <!-- define how we want compilation to take place
+           here, we accept most of the defaults but say that we want the
+           optimization flag set, and define the source and target to be 1.4,
+           these setting will be inherited by child projects -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+          <configuration>
+              <optimize>true</optimize>
+              <source>1.5</source>
+              <target>1.5</target>
+          </configuration>
+      </plugin>  
+
+      <!-- define that we wish to create src jars -->
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <inherited>true</inherited>
+        <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>jboss</groupId>
+      <artifactId>jboss-j2ee</artifactId>
+      <version>4.0.2</version>
+    </dependency>
+  </dependencies>
+</project>




More information about the jboss-cvs-commits mailing list