[jboss-cvs] JBossAS SVN: r100958 - in projects/ejb3/components: proxy and 6 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Feb 15 03:23:10 EST 2010


Author: ALRubinger
Date: 2010-02-15 03:23:09 -0500 (Mon, 15 Feb 2010)
New Revision: 100958

Added:
   projects/ejb3/components/proxy/
   projects/ejb3/components/proxy/tags/
   projects/ejb3/components/proxy/trunk/
   projects/ejb3/components/proxy/trunk/build/
   projects/ejb3/components/proxy/trunk/build/pom.xml
   projects/ejb3/components/proxy/trunk/pom.xml
   projects/ejb3/components/proxy/trunk/spi/
   projects/ejb3/components/proxy/trunk/spi/pom.xml
   projects/ejb3/components/proxy/trunk/spi/src/
   projects/ejb3/components/proxy/trunk/spi/src/main/
   projects/ejb3/components/proxy/trunk/spi/src/main/java/
   projects/ejb3/components/proxy/trunk/spi/src/main/resources/
   projects/ejb3/components/proxy/trunk/spi/src/test/
   projects/ejb3/components/proxy/trunk/spi/src/test/java/
   projects/ejb3/components/proxy/trunk/spi/src/test/resources/
Log:
[EJBTHREE-2012] Commit skeleton for proxy component


Property changes on: projects/ejb3/components/proxy/trunk
___________________________________________________________________
Name: svn:ignore
   + target
eclipse-target
target-eclipse
bin
.classpath
.project
.settings



Property changes on: projects/ejb3/components/proxy/trunk/build
___________________________________________________________________
Name: svn:ignore
   + target
eclipse-target
target-eclipse
bin
.classpath
.project
.settings


Added: projects/ejb3/components/proxy/trunk/build/pom.xml
===================================================================
--- projects/ejb3/components/proxy/trunk/build/pom.xml	                        (rev 0)
+++ projects/ejb3/components/proxy/trunk/build/pom.xml	2010-02-15 08:23:09 UTC (rev 100958)
@@ -0,0 +1,199 @@
+<?xml version="1.0" encoding="UTF-8"?>
+  <!--
+  vi:ts=2:sw=2:expandtab:
+-->
+<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">
+
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jboss</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>4</version>
+  </parent>
+
+  <!-- Model Version -->
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- Artifact Configuration -->
+  <groupId>org.jboss.ejb3.proxy</groupId>
+  <artifactId>proxy-build</artifactId>
+  <version>0.1.0-SNAPSHOT</version>
+  <name>JBoss EJB 3.x Proxy Build</name>
+  <description>Centralized Build Configuration for EJB 3.x Proxy Support</description>
+  <packaging>pom</packaging>
+
+  <!-- Properties -->
+  <properties>
+
+    <!-- Versioning -->
+    <version.junit_junit>4.7</version.junit_junit>
+    <version.org.jboss.javaee_jboss.ejb.api>3.0.0.GA_SP1</version.org.jboss.javaee_jboss.ejb.api>
+
+  </properties>
+
+  <!-- SCM -->
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/components/proxy/trunk</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb3/components/proxy/trunk</developerConnection>
+    <url>http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/components/proxy/trunk</url>
+  </scm>
+
+  <!-- Issues -->
+  <issueManagement>
+    <system>jira</system>
+    <url>http://jira.jboss.com/jira/browse/EJBTHREE</url>
+  </issueManagement>
+
+  <!-- Build -->
+  <build>
+
+    <plugins>
+
+      <!-- Compiler / JDK6 required for EJB 3.1 -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <inherited>true</inherited>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+          <showDeprecation>false</showDeprecation>
+          <showWarnings>true</showWarnings>
+          <optimize>true</optimize>
+          <compilerVersion>1.6</compilerVersion>
+          <fork>true</fork>
+          <argLine>-Xmx512M</argLine>
+          <executable>${JAVA_HOME}/bin/javac</executable>
+        </configuration>
+      </plugin>
+
+      <!-- Surefire -->
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <redirectTestOutputToFile>true</redirectTestOutputToFile>
+          <trimStackTrace>false</trimStackTrace>
+          <printSummary>true</printSummary>
+          <includes>
+            <include>**/*UnitTest.java</include>
+          </includes>
+          <forkMode>always</forkMode>
+          <useFile>true</useFile>
+        </configuration>
+      </plugin>
+
+      <!-- Maven Release Plugin Configuration -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-release-plugin</artifactId>
+        <configuration>
+          <tagBase>https://svn.jboss.org/repos/jbossas/projects/ejb3/components/proxy/tags</tagBase>
+        </configuration>
+      </plugin>
+
+      <!-- Enforce Maven Environment -->
+      <plugin>
+        <artifactId>maven-enforcer-plugin
+                      </artifactId>
+        <executions>
+          <execution>
+            <id>enforce-maven-environment</id>
+            <goals>
+              <goal>enforce</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <rules>
+            <requireJavaVersion>
+              <version>1.6.0</version> <!-- Must be JDK6 -->
+            </requireJavaVersion>
+            <requireProperty>
+              <property>env.JAVA_HOME</property>
+              <message>"JAVA_HOME needs to be set to compile"</message>
+            </requireProperty>
+          </rules>
+        </configuration>
+      </plugin>
+    </plugins>
+
+  </build>
+
+  <!-- Dependency Management -->
+  <dependencyManagement>
+    <dependencies>
+
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>${version.junit_junit}</version>
+        <scope>test</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.jboss.javaee</groupId>
+        <artifactId>jboss-ejb-api</artifactId>
+        <version>${version.org.jboss.javaee_jboss.ejb.api}</version>
+      </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+
+  <!-- Reporting -->
+  <reporting>
+    <plugins>
+
+      <!-- Cobertura (Code Coverage) -->
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <configuration>
+          <formats>
+            <format>html</format>
+            <format>xml</format>
+          </formats>
+        </configuration>
+      </plugin>
+
+      <!-- FindBugs -->
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>findbugs-maven-plugin</artifactId>
+        <configuration>
+          <xmlOutput>true</xmlOutput>
+          <findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory>
+        </configuration>
+      </plugin>
+
+      <!-- JavaDoc / APIViz -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.5</version>
+        <configuration>
+          <doclet>org.jboss.apiviz.APIviz</doclet>
+          <docletArtifact>
+            <groupId>org.jboss.apiviz</groupId>
+            <artifactId>apiviz</artifactId>
+            <version>1.3.0.GA</version>
+          </docletArtifact>
+          <useStandardDocletOptions>true</useStandardDocletOptions>
+          <charset>UTF-8</charset>
+          <encoding>UTF-8</encoding>
+          <docencoding>UTF-8</docencoding>
+          <breakiterator>true</breakiterator>
+          <version>true</version>
+          <author>true</author>
+          <keywords>true</keywords>
+          <additionalparam> 
+            -sourceclasspath ${project.build.outputDirectory}
+          </additionalparam>
+        </configuration>
+      </plugin>
+
+
+    </plugins>
+  </reporting>
+
+</project>
+

Added: projects/ejb3/components/proxy/trunk/pom.xml
===================================================================
--- projects/ejb3/components/proxy/trunk/pom.xml	                        (rev 0)
+++ projects/ejb3/components/proxy/trunk/pom.xml	2010-02-15 08:23:09 UTC (rev 100958)
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+  <!--
+  vi:ts=2:sw=2:expandtab:
+-->
+<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">
+
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jboss</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>4</version>
+  </parent>
+
+  <!-- Model Information -->
+  <modelVersion>4.0.0</modelVersion>
+  
+  <!-- Artifact Information  -->
+  <groupId>org.jboss.ejb3.proxy</groupId>
+  <artifactId>proxy-parent</artifactId>
+  <version>0.1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>JBoss EJB 3.x Proxy Aggregator</name>
+  <url>http://www.jboss.org</url>
+  <description>Support of JBoss EJB3.x Proxies</description>
+
+  <!-- Plugin Configuration -->
+  <build>
+    <plugins>
+
+      <!-- Deploy -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <!-- Don't include this aggregator in the deployment -->
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+
+    </plugins>
+  </build>
+
+  <!-- Aggregate Modules -->
+  <modules>
+    <module>spi</module>
+    <module>build</module>
+  </modules>
+
+</project>


Property changes on: projects/ejb3/components/proxy/trunk/spi
___________________________________________________________________
Name: svn:ignore
   + target
eclipse-target
target-eclipse
bin
.classpath
.project
.settings


Added: projects/ejb3/components/proxy/trunk/spi/pom.xml
===================================================================
--- projects/ejb3/components/proxy/trunk/spi/pom.xml	                        (rev 0)
+++ projects/ejb3/components/proxy/trunk/spi/pom.xml	2010-02-15 08:23:09 UTC (rev 100958)
@@ -0,0 +1,59 @@
+<!--
+  vi:ts=2:sw=2:expandtab
+-->
+<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>
+    <groupId>org.jboss.ejb3.proxy</groupId>
+    <artifactId>proxy-build</artifactId>
+    <version>0.1.0-SNAPSHOT</version>
+    <relativePath>../build/pom.xml</relativePath>
+  </parent>
+
+  <!-- Maven POM Model Version -->
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- Artifact Information -->
+  <artifactId>proxy-spi</artifactId>
+  <packaging>jar</packaging>
+  <name>JBoss EJB 3.x Proxy SPI</name>
+  <description>Service Provider Interface for JBoss EJB 3.x Proxies</description>
+
+  <!-- Build Configuration -->
+  <build>
+  
+    
+  </build>
+  
+  <properties>
+  
+    
+  
+  </properties>
+
+  <dependencies>
+  
+    <!-- 
+    Dependencies: org.jboss.ejb3 
+    -->
+    
+    
+    <!-- 
+    Dependencies: External to EJB3 
+    -->
+    <dependency>
+      <groupId>org.jboss.javaee</groupId>
+      <artifactId>jboss-ejb-api</artifactId>
+    </dependency>
+    
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    
+    
+  </dependencies>
+</project>




More information about the jboss-cvs-commits mailing list