[jboss-cvs] JBossAS SVN: r82641 - projects/jboss-cl/trunk/classloader.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jan 6 17:14:42 EST 2009


Author: pgier
Date: 2009-01-06 17:14:41 -0500 (Tue, 06 Jan 2009)
New Revision: 82641

Removed:
   projects/jboss-cl/trunk/classloader/pom-jdk14.xml
Log:
Remove old jdk1.4 pom

Deleted: projects/jboss-cl/trunk/classloader/pom-jdk14.xml
===================================================================
--- projects/jboss-cl/trunk/classloader/pom-jdk14.xml	2009-01-06 21:10:21 UTC (rev 82640)
+++ projects/jboss-cl/trunk/classloader/pom-jdk14.xml	2009-01-06 22:14:41 UTC (rev 82641)
@@ -1,200 +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.microcontainer-jdk14</groupId>
-    <artifactId>jboss-microcontainer-jdk14</artifactId>
-    <version>2.0.0-SNAPSHOT</version>
-    <relativePath>../build/pom-jdk14.xml</relativePath>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>jboss-classloader-jdk14</artifactId>
-  <packaging>jar</packaging>
-  <name>JBoss Microcontainer ClassLoader</name>
-  <url>http://www.jboss.com/products/jbossmc</url>
-  <description>JBoss ClassLoader</description>
-  <build>
-    <testResources>
-      <testResource>
-        <directory>src/resources/tests</directory>
-      </testResource>
-    </testResources>
-    <plugins>
-      <plugin>
-        <groupId>org.jboss.maven.plugins</groupId>
-        <artifactId>maven-jboss-retro-plugin</artifactId>
-        <version>1.0-beta-1</version>
-        <executions>
-          <execution>
-            <id>weave-classes</id>
-            <goals>
-              <goal>weave</goal>
-            </goals>
-            <configuration>
-              <outputDirectory>${project.build.directory}/classes-jdk14</outputDirectory>
-            </configuration>
-          </execution>
-          <execution>
-            <id>weave-test-classes</id>
-            <goals>
-              <goal>weave-tests</goal>
-            </goals>
-            <configuration>
-              <outputDirectory>${project.build.directory}/test-classes-jdk14</outputDirectory>
-            </configuration>
-          </execution>
-        </executions>
-        <configuration>
-          <weaverClass>org.jboss.weaver.retro.WeaverRetroJdk14</weaverClass>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-jar-plugin</artifactId>
-        <configuration>
-          <classesDirectory>${project.build.directory}/classes-jdk14</classesDirectory>
-        </configuration>
-      </plugin>
-      <plugin>
-        <!-- Skip the tests here because the jdk14 tests have
-          -  to be run in a separate profile.
-          -->
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <skip>true</skip>              
-        </configuration>
-      </plugin>
-    </plugins>
-  </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>
-        <microcontainer.outputDirectory>target/classes-jdk14</microcontainer.outputDirectory>
-        <microcontainer.testOutputDirectory>target/test-classes-jdk14</microcontainer.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>  
-              <redirectTestOutputToFile>true</redirectTestOutputToFile> 
-              <testFailureIgnore>true</testFailureIgnore>  
-              <useSystemClassLoader>true</useSystemClassLoader>    
-              <reportsDirectory>${project.build.directory}/surefire-reports-jdk14</reportsDirectory>
-              <includes>
-                <include>**/*TestCase.java</include>
-              </includes>
-              <excludes>
-                <exclude>**/IsolatedClassLoaderUnitTestCase.java</exclude>
-                <exclude>**/DelegateUnitTestCase.java</exclude>
-              </excludes>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-  
-  <!-- Do not add version information here, use ../build/pom.xml instead -->
-  <dependencyManagement>
-    <dependencies>
-      <dependency>
-        <groupId>org.jboss</groupId>
-        <artifactId>jboss-test-jdk14</artifactId>
-        <version>${version.org.jboss.test}</version>
-      </dependency>
-      <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <version>${version.junit}</version>
-        <scope>compile</scope>
-      </dependency>
-    </dependencies>
-  </dependencyManagement>
-  <dependencies>
-    <!-- Global dependencies -->
-    <dependency>
-	    <groupId>org.jboss</groupId>
-	    <artifactId>jboss-classloading-spi-jdk14</artifactId>
-      <version>${version.jboss.classloading.spi}</version>
-     </dependency>
-    <dependency>
-	    <groupId>org.jboss</groupId>
-	    <artifactId>jboss-common-core-jdk14</artifactId>
-	  </dependency>
-    <dependency>
-      <groupId>org.jboss</groupId>
-      <artifactId>jboss-common-logging-spi-jdk14</artifactId>
-    </dependency>
-	  <!-- Test dependencies -->
-    <dependency>
-      <groupId>org.jboss</groupId>
-      <artifactId>jboss-test-jdk14</artifactId>
-    </dependency>
-    <dependency>
-	    <groupId>junit</groupId>
-	    <artifactId>junit</artifactId>
-    </dependency>
-    <!-- Runtime dependencies -->
-    <dependency>
-      <groupId>jboss</groupId>
-      <artifactId>jboss-backport-concurrent</artifactId>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <groupId>javax.management</groupId>
-      <artifactId>jmxri</artifactId>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.jboss</groupId>
-      <artifactId>jboss-retro</artifactId>
-      <classifier>rt</classifier>
-      <scope>runtime</scope>
-    </dependency>
-  </dependencies>  
-</project>




More information about the jboss-cvs-commits mailing list