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"> + + <repositories> + <repository> + <id>central</id> + <name>bintray</name> + <url>http://jcenter.bintray.com</url> + </repository> + </repositories> + </repositories> + + <dependency> + <groupId>org.testng</groupId> + <artifactId>testng</artifactId> + <version>6.9.4</version> + <scope>test</scope> + </dependency> +</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édric Beust (cedric at beust.com)<br> -Current version: 6.8.15<br> +Current version: 6.9.4<br> Created: April 27th, 2004<br> -Last Modified: January 14th, 2015</em></font></p> +Last Modified: 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

