[jboss-cvs] JBossAS SVN: r99730 - in projects/ejb3/tags: jboss-ejb3-nointerface-build-1.0.0-alpha-2 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jan 21 07:31:51 EST 2010


Author: jaikiran
Date: 2010-01-21 07:31:50 -0500 (Thu, 21 Jan 2010)
New Revision: 99730

Added:
   projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2/
   projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2/pom.xml
Removed:
   projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2/pom.xml
Log:
[maven-release-plugin]  copy for tag jboss-ejb3-nointerface-build-1.0.0-alpha-2

Copied: projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2 (from rev 99728, projects/ejb3/components/nointerface/trunk/build)

Deleted: projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2/pom.xml
===================================================================
--- projects/ejb3/components/nointerface/trunk/build/pom.xml	2010-01-21 12:16:27 UTC (rev 99728)
+++ projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2/pom.xml	2010-01-21 12:31:50 UTC (rev 99730)
@@ -1,207 +0,0 @@
-<?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.nointerface</groupId>
-    <artifactId>jboss-ejb3-nointerface-build</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
-    <name>JBoss EJB3.1 no-interface build</name>
-    <description>Centralized Build Configuration for EJB 3.1+ no-interface support</description>
-    <packaging>pom</packaging>
-
-    <!-- Properties -->
-    <properties>
-
-        <!-- Versioning -->
-        <version.junit_junit>4.6</version.junit_junit>
-        <version.jboss.logging.spi>2.0.5.GA</version.jboss.logging.spi>
-        <version.jboss.logging.log4j>2.0.5.GA</version.jboss.logging.log4j>
-    </properties>
-
-    <!-- SCM -->
-    <scm>
-        <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/components/nointerface</connection>
-        <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb3/components/nointerface</developerConnection>
-        <url>http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/components/nointerface</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.6</source>
-                    <target>1.6</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>**/*TestCase.java</include>
-                        <include>**/*TestSuite.java</include>
-                    </includes>
-                    <forkMode>always</forkMode>
-                </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/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</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.logging</groupId>
-                <artifactId>jboss-logging-log4j</artifactId>
-                <version>${version.jboss.logging.log4j}</version>
-                <scope>runtime</scope>
-            </dependency>
-
-            <dependency>
-                <groupId>org.jboss.logging</groupId>
-                <artifactId>jboss-logging-spi</artifactId>
-                <version>${version.jboss.logging.spi}</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>
-

Copied: projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2/pom.xml (from rev 99729, projects/ejb3/components/nointerface/trunk/build/pom.xml)
===================================================================
--- projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2/pom.xml	                        (rev 0)
+++ projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2/pom.xml	2010-01-21 12:31:50 UTC (rev 99730)
@@ -0,0 +1,206 @@
+<?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.nointerface</groupId>
+    <artifactId>jboss-ejb3-nointerface-build</artifactId>
+    <version>1.0.0-alpha-2</version>
+    <name>JBoss EJB3.1 no-interface build</name>
+    <description>Centralized Build Configuration for EJB 3.1+ no-interface support</description>
+    <packaging>pom</packaging>
+
+    <!-- Properties -->
+    <properties>
+
+        <!-- Versioning -->
+        <version.junit_junit>4.6</version.junit_junit>
+        <version.jboss.logging.spi>2.0.5.GA</version.jboss.logging.spi>
+        <version.jboss.logging.log4j>2.0.5.GA</version.jboss.logging.log4j>
+    </properties>
+
+    <!-- SCM -->
+    <scm>
+        <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2</connection>
+        <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2</developerConnection>
+        <url>http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-nointerface-build-1.0.0-alpha-2</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.6</source>
+                    <target>1.6</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>**/*TestCase.java</include>
+                        <include>**/*TestSuite.java</include>
+                    </includes>
+                    <forkMode>always</forkMode>
+                </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/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</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.logging</groupId>
+                <artifactId>jboss-logging-log4j</artifactId>
+                <version>${version.jboss.logging.log4j}</version>
+                <scope>runtime</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>org.jboss.logging</groupId>
+                <artifactId>jboss-logging-spi</artifactId>
+                <version>${version.jboss.logging.spi}</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>
+




More information about the jboss-cvs-commits mailing list