You are viewing a plain text version of this content. The canonical link for it is here.
Posted to surefire-commits@maven.apache.org by br...@apache.org on 2010/04/28 17:47:10 UTC

svn commit: r938997 - /maven/surefire/trunk/maven-surefire-plugin/src/site/apt/examples/testng.apt.vm

Author: brett
Date: Wed Apr 28 15:47:10 2010
New Revision: 938997

URL: http://svn.apache.org/viewvc?rev=938997&view=rev
Log:
updated docs for the 5.12.1 release

Modified:
    maven/surefire/trunk/maven-surefire-plugin/src/site/apt/examples/testng.apt.vm

Modified: maven/surefire/trunk/maven-surefire-plugin/src/site/apt/examples/testng.apt.vm
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/maven-surefire-plugin/src/site/apt/examples/testng.apt.vm?rev=938997&r1=938996&r2=938997&view=diff
==============================================================================
--- maven/surefire/trunk/maven-surefire-plugin/src/site/apt/examples/testng.apt.vm (original)
+++ maven/surefire/trunk/maven-surefire-plugin/src/site/apt/examples/testng.apt.vm Wed Apr 28 15:47:10 2010
@@ -10,7 +10,20 @@ Using TestNG
 
 * Configuring TestNG
 
-  To get started with TestNG, include the following dependency in your project:
+  To get started with TestNG, include the following dependency in your project (replacing the version with the one you wish to use):
+
++---+
+  [...]
+    <dependency>
+      <groupId>org.testng</groupId>
+      <artifactId>testng</artifactId>
+      <version>5.12.1</version>
+      <scope>test</scope>
+    </dependency>
+  [...]
++---+
+
+  If you are using an older version of TestNG (\<= 5.11), the dependency would instead look like this:
 
 +---+
   [...]