[jboss-cvs] JBossAS SVN: r82926 - in projects/javaee/tags: jboss-jacc-api-1.1.0.GA_SP1 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jan 15 15:26:34 EST 2009


Author: smcgowan at redhat.com
Date: 2009-01-15 15:26:34 -0500 (Thu, 15 Jan 2009)
New Revision: 82926

Added:
   projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/
   projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom-jdk14.xml
   projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom.xml
Removed:
   projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom-jdk14.xml
   projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom.xml
Log:
[maven-release-plugin]  copy for tag jboss-jacc-api-1.1.0.GA_SP1

Copied: projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1 (from rev 82882, projects/javaee/branches/Branch_5_0/jboss-jacc-api)

Deleted: projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom-jdk14.xml
===================================================================
--- projects/javaee/branches/Branch_5_0/jboss-jacc-api/pom-jdk14.xml	2009-01-14 20:28:31 UTC (rev 82882)
+++ projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom-jdk14.xml	2009-01-15 20:26:34 UTC (rev 82926)
@@ -1,101 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  - Notes for building and running tests.
-  - Do to some limitations of the maven surefire plugin, the tests must
-  - occur in a separate lifecycle from the build.
-  -
-  - mvn -f pom-jdk14.xml install  -  This will build the jdk14 version of the project.
-  - mvn -f pom-jdk14.xml -Prun-jdk14-tests surefire:test  -  This will run the tests using a jdk1.4 jvm  
-  -    Note: the tests will not work by calling mvn test, it must be performed by calling surefire directly.
-  -->
-<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>
-    <groupId>org.jboss.javaee</groupId>
-    <artifactId>jboss-javaee-jdk14</artifactId>
-    <version>5.0.0-SNAPSHOT</version>
-    <relativePath>../build/pom-jdk14.xml</relativePath>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>jboss-jacc-api-jdk14</artifactId>
-  <version>1.1-SNAPSHOT</version>
-  <packaging>jar</packaging>
-  <name>JBoss JACC 1.1 API</name>
-  <url>http://www.jboss.org</url>
-  <description>The Java Authorization Contract for Containers 1.1 API classes</description>
-  <build>
-    <outputDirectory>${outputDirectory}</outputDirectory>
-    <testOutputDirectory>${testOutputDirectory}</testOutputDirectory>
-  </build>
-
-  <profiles>
-    <!-- Note: to run the jdk14 tests, the surefire plugin must be called outside
-      -  of the lifecycle.  In other words it should be called directly from the command
-      -  line like this
-      -     mvn -f pom-jdk14.xml -Prun-jdk14-tests surefire:test
-      -->
-    <profile>
-      <id>run-jdk14-tests</id>
-      <properties>
-        <outputDirectory>target/classes-jdk14</outputDirectory>
-        <testOutputDirectory>target/test-classes-jdk14</testOutputDirectory>
-      </properties>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-enforcer-plugin</artifactId>
-            <version>1.0-alpha-3</version>
-            <executions>
-              <execution>
-                <id>enforce-jdk14-property</id>
-                <goals>
-                  <goal>enforce-once</goal>
-                </goals>
-                <configuration>
-                  <rules>
-                    <requireProperty>
-                      <property>java14_home</property>
-                      <message>
-                        The property java14_home should be set to a valid installation of jdk1.4.  The jdk14 tests cannot be run without this property.
-                      </message>
-                    </requireProperty>
-                  </rules>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <jvm>${java14_home}/bin/java</jvm>
-              <forkMode>always</forkMode>
-              <skip>false</skip>           
-              <reportsDirectory>${project.build.directory}/surefire-reports-jdk14</reportsDirectory>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-  
-  <dependencies>
-    <dependency>
-      <groupId>org.jboss</groupId>
-      <artifactId>jboss-common-core-jdk14</artifactId>
-      <version>2.2.1-SNAPSHOT</version>
-    </dependency>
-    <dependency>
-      <groupId>sun-servlet</groupId>
-      <artifactId>servlet-api</artifactId>
-      <version>2.4</version>
-    </dependency>
-  </dependencies>
-  
-  <properties>
-    <outputDirectory>target/classes</outputDirectory>
-    <testOutputDirectory>target/test-classes</testOutputDirectory>
-  </properties>
-  
-</project>

Copied: projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom-jdk14.xml (from rev 82883, projects/javaee/branches/Branch_5_0/jboss-jacc-api/pom-jdk14.xml)
===================================================================
--- projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom-jdk14.xml	                        (rev 0)
+++ projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom-jdk14.xml	2009-01-15 20:26:34 UTC (rev 82926)
@@ -0,0 +1,101 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  - Notes for building and running tests.
+  - Do to some limitations of the maven surefire plugin, the tests must
+  - occur in a separate lifecycle from the build.
+  -
+  - mvn -f pom-jdk14.xml install  -  This will build the jdk14 version of the project.
+  - mvn -f pom-jdk14.xml -Prun-jdk14-tests surefire:test  -  This will run the tests using a jdk1.4 jvm  
+  -    Note: the tests will not work by calling mvn test, it must be performed by calling surefire directly.
+  -->
+<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>
+    <groupId>org.jboss.javaee</groupId>
+    <artifactId>jboss-javaee-jdk14</artifactId>
+    <version>5.0.1-SNAPSHOT</version>
+    <relativePath>../build/pom-jdk14.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>jboss-jacc-api-jdk14</artifactId>
+  <version>1.1-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <name>JBoss JACC 1.1 API</name>
+  <url>http://www.jboss.org</url>
+  <description>The Java Authorization Contract for Containers 1.1 API classes</description>
+  <build>
+    <outputDirectory>${outputDirectory}</outputDirectory>
+    <testOutputDirectory>${testOutputDirectory}</testOutputDirectory>
+  </build>
+
+  <profiles>
+    <!-- Note: to run the jdk14 tests, the surefire plugin must be called outside
+      -  of the lifecycle.  In other words it should be called directly from the command
+      -  line like this
+      -     mvn -f pom-jdk14.xml -Prun-jdk14-tests surefire:test
+      -->
+    <profile>
+      <id>run-jdk14-tests</id>
+      <properties>
+        <outputDirectory>target/classes-jdk14</outputDirectory>
+        <testOutputDirectory>target/test-classes-jdk14</testOutputDirectory>
+      </properties>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-enforcer-plugin</artifactId>
+            <version>1.0-alpha-3</version>
+            <executions>
+              <execution>
+                <id>enforce-jdk14-property</id>
+                <goals>
+                  <goal>enforce-once</goal>
+                </goals>
+                <configuration>
+                  <rules>
+                    <requireProperty>
+                      <property>java14_home</property>
+                      <message>
+                        The property java14_home should be set to a valid installation of jdk1.4.  The jdk14 tests cannot be run without this property.
+                      </message>
+                    </requireProperty>
+                  </rules>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <jvm>${java14_home}/bin/java</jvm>
+              <forkMode>always</forkMode>
+              <skip>false</skip>           
+              <reportsDirectory>${project.build.directory}/surefire-reports-jdk14</reportsDirectory>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+  
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss</groupId>
+      <artifactId>jboss-common-core-jdk14</artifactId>
+      <version>2.2.1-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>sun-servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.4</version>
+    </dependency>
+  </dependencies>
+  
+  <properties>
+    <outputDirectory>target/classes</outputDirectory>
+    <testOutputDirectory>target/test-classes</testOutputDirectory>
+  </properties>
+  
+</project>

Deleted: projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom.xml
===================================================================
--- projects/javaee/branches/Branch_5_0/jboss-jacc-api/pom.xml	2009-01-14 20:28:31 UTC (rev 82882)
+++ projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom.xml	2009-01-15 20:26:34 UTC (rev 82926)
@@ -1,27 +0,0 @@
-<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>
-    <groupId>org.jboss.javaee</groupId>
-    <artifactId>jboss-javaee-parent</artifactId>
-    <version>5.0.1.GA</version>
-    <relativePath>../build/pom.xml</relativePath>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.jboss.javaee</groupId>
-  <artifactId>jboss-jacc-api</artifactId>
-  <version>1.1.0.GA</version>
-  <packaging>jar</packaging>
-  <name>JBoss JACC 1.1 API</name>
-  <url>http://www.jboss.org</url>
-  <description>The Java Authorization Contract for Containers 1.1 API classes</description>
-  <dependencies>
-    <dependency>
-      <groupId>org.jboss</groupId>
-      <artifactId>jboss-common-core</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>jboss.web</groupId>
-      <artifactId>servlet-api</artifactId>
-      <version>2.1.1.GA</version>
-    </dependency>
-  </dependencies>
-</project>

Copied: projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom.xml (from rev 82925, projects/javaee/branches/Branch_5_0/jboss-jacc-api/pom.xml)
===================================================================
--- projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom.xml	                        (rev 0)
+++ projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1/pom.xml	2009-01-15 20:26:34 UTC (rev 82926)
@@ -0,0 +1,32 @@
+<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>
+    <groupId>org.jboss.javaee</groupId>
+    <artifactId>jboss-javaee-parent</artifactId>
+    <version>5.0.1.GA</version>
+    <relativePath>../build/pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.javaee</groupId>
+  <artifactId>jboss-jacc-api</artifactId>
+  <version>1.1.0.GA_SP1</version>
+  <packaging>jar</packaging>
+  <name>JBoss JACC 1.1 API</name>
+  <url>http://www.jboss.org</url>
+  <description>The Java Authorization Contract for Containers 1.1 API classes</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss</groupId>
+      <artifactId>jboss-common-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>jboss.web</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.1.1.GA</version>
+    </dependency>
+  </dependencies>
+
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/javaee/tags/jboss-jacc-api-1.1.0.GA_SP1</developerConnection>
+  </scm>
+</project>




More information about the jboss-cvs-commits mailing list