[jboss-cvs] Repository SVN: r27211 - in maven2/org/apache/maven/surefire/surefire-testng: 2.4.3 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed May 13 06:05:47 EDT 2009


Author: manaRH
Date: 2009-05-13 06:05:47 -0400 (Wed, 13 May 2009)
New Revision: 27211

Added:
   maven2/org/apache/maven/surefire/surefire-testng/2.4.3/
   maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.jar
   maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.jar.md5
   maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.jar.sha1
   maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom
   maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom.md5
   maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom.sha1
Log:
added surefire-testng 2.4.3

Added: maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.jar
===================================================================
(Binary files differ)


Property changes on: maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.jar.md5
===================================================================
--- maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.jar.md5	                        (rev 0)
+++ maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.jar.md5	2009-05-13 10:05:47 UTC (rev 27211)
@@ -0,0 +1 @@
+ca5fc55a7e0b91a455b92e731c114a96
\ No newline at end of file

Added: maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.jar.sha1
===================================================================
--- maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.jar.sha1	                        (rev 0)
+++ maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.jar.sha1	2009-05-13 10:05:47 UTC (rev 27211)
@@ -0,0 +1 @@
+89882428ffe884e7e56e7ce423a21fe5296e3059
\ No newline at end of file

Added: maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom
===================================================================
--- maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom	                        (rev 0)
+++ maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom	2009-05-13 10:05:47 UTC (rev 27211)
@@ -0,0 +1,91 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<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>
+  <parent>
+    <groupId>org.apache.maven.surefire</groupId>
+    <artifactId>surefire-providers</artifactId>
+    <version>2.4.3</version>
+  </parent>
+  <artifactId>surefire-testng</artifactId>
+  <name>SureFire TestNG Runner</name>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-artifact</artifactId>
+      <version>2.0</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+    </dependency>
+  </dependencies>
+  <!-- TODO: do we include both? Or just 1.5? No need for profile -->
+  <profiles>
+    <profile>
+      <id>jdk14</id>
+      <activation>
+        <jdk>1.4</jdk>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.testng</groupId>
+          <artifactId>testng</artifactId>
+          <version>5.7</version>
+          <classifier>jdk14</classifier>
+        </dependency>
+      </dependencies>
+    </profile>
+    <profile>
+      <id>jdk15</id>
+      <activation>
+        <jdk>!1.4</jdk>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.testng</groupId>
+          <artifactId>testng</artifactId>
+          <version>5.7</version>
+          <classifier>jdk15</classifier>
+        </dependency>
+      </dependencies>
+    </profile>
+  </profiles>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <fork>false</fork>
+          <compilerVersion>1.4</compilerVersion>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <!-- DGF There are no tests in this project currently, and this
+            resolves SUREFIRE-414 -->
+          <skipExec>true</skipExec>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom.md5
===================================================================
--- maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom.md5	                        (rev 0)
+++ maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom.md5	2009-05-13 10:05:47 UTC (rev 27211)
@@ -0,0 +1 @@
+3568506644dc4321244a2e2c3887f07e
\ No newline at end of file

Added: maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom.sha1
===================================================================
--- maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom.sha1	                        (rev 0)
+++ maven2/org/apache/maven/surefire/surefire-testng/2.4.3/surefire-testng-2.4.3.pom.sha1	2009-05-13 10:05:47 UTC (rev 27211)
@@ -0,0 +1 @@
+fae148f74a7bf41b2ca3802b91e013684958b635
\ No newline at end of file




More information about the jboss-cvs-commits mailing list