This is an automated email from the git hooks/post-receive script.

eugene-guest pushed a commit to annotated tag OpenBSD
in repository testng.

commit 49010298bdf199f26a0d9cac6150374a6fa14580
Author: Cedric Beust <[email protected]>
Date:   Sat May 9 15:00:44 2015 -0700

    Doc updates.
---
 doc/download.html | 44 ++++++++++++++++++++++++++++++++++++--------
 doc/index.html    |  4 ++--
 2 files changed, 38 insertions(+), 10 deletions(-)

diff --git a/doc/download.html b/doc/download.html
index 8d73e9c..be2546f 100644
--- a/doc/download.html
+++ b/doc/download.html
@@ -15,8 +15,42 @@
 
 <h3>Current Release Version</h3>
 
-<p> The latest version of TestNG can be downloaded from <a 
href="http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22testng%22";>Maven 
Central</a>. </p>
-<p>For the Eclipse plug-in, we suggest using the update site:</p>
+<h4>Maven</h4>
+
+<pre class="brush:xml">
+
+    &lt;repositories&gt;
+      &lt;repository&gt;
+        &lt;id&gt;central&lt;/id&gt;
+        &lt;name&gt;bintray&lt;/name&gt;
+        &lt;url&gt;http://jcenter.bintray.com&lt;/url&gt;
+        &lt;/repository&gt;
+      &lt;/repositories&gt;
+    &lt;/repositories&gt;
+
+    &lt;dependency&gt;
+      &lt;groupId&gt;org.testng&lt;/groupId&gt;
+      &lt;artifactId&gt;testng&lt;/artifactId&gt;
+      &lt;version&gt;6.9.4&lt;/version&gt;
+      &lt;scope&gt;test&lt;/scope&gt;
+    &lt;/dependency&gt;
+</pre>
+
+<h4>Gradle</h4>
+
+<pre class="brush:xml">
+repositories {
+    jcenter()
+}
+
+dependencies {
+    testCompile 'org.testng:testng:6.9.4'
+}
+</pre>
+
+
+<h4>Eclipse plug-in</h4>
+<p>You can use either the Eclipse Market Place or the update site:</p>
 <ul>
        <li>Select<i> Help / Software updates / Find and Install.</i> 
        </li>
@@ -44,12 +78,6 @@ $ mvn package
 
 <p>You will then find the jar file in the <tt>target</tt> directory</p>
 
-<h3>Beta Version</h3>
-
-<p>The beta version contains changes that have been committed to the repo 
since the current release.</p>
-<p>Take a look at <a 
href="https://github.com/cbeust/testng/blob/master/CHANGES.txt";>CHANGES.txt</a> 
to see if the change you want is included in the beta (listed under 
"Current").</p>
-<p>You can <a href="/beta">download the beta version here</a>.</p>
-
 <script src="http://www.google-analytics.com/urchin.js"; type="text/javascript">
 </script>
 <script type="text/javascript">
diff --git a/doc/index.html b/doc/index.html
index e2d65dd..0a03e34 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -42,9 +42,9 @@
 
 
 <p align="right"><font size="-2"><em>C&eacute;dric Beust (cedric at 
beust.com)<br>
-Current version: 6.8.15<br>
+Current version: 6.9.4<br>
 Created:&nbsp;April 27th, 2004<br>
-Last Modified:&nbsp; January 14th, 2015</em></font></p>
+Last Modified:&nbsp; May 9th, 2015</em></font></p>
 
 
 <p>TestNG is a testing framework inspired from JUnit and NUnit but introducing

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/testng.git

_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to