You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2020/05/25 23:04:46 UTC

[groovy-website] branch asf-site updated: add TestNG note to release notes

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 37ad824  add TestNG note to release notes
37ad824 is described below

commit 37ad824e19af8190717570b14372ce0b13638824
Author: Paul King <pa...@asert.com.au>
AuthorDate: Tue May 26 09:04:39 2020 +1000

    add TestNG note to release notes
---
 site/src/site/releasenotes/groovy-3.0.adoc | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/site/src/site/releasenotes/groovy-3.0.adoc b/site/src/site/releasenotes/groovy-3.0.adoc
index c1ce422..848f88b 100644
--- a/site/src/site/releasenotes/groovy-3.0.adoc
+++ b/site/src/site/releasenotes/groovy-3.0.adoc
@@ -882,3 +882,25 @@ JUnit 3 users using the `@NotYetImplemented` annotation should consider one of t
 * Consider upgrading to JUnit 4 or 5
 
 For further details see (link:https://issues.apache.org/jira/browse/GROOVY-9492[GROOVY-9492]).
+
+[[Groovy3.0releasenotes-3.0.4]]
+== Addendum for 3.0.4
+
+We bumped the Groovy dependency for TestNG to 7.2.0. Unfortunately, at the time of release, that version exists only in jcenter,
+not Maven central. If you are using the groovy-all pom or bom, you can add jcenter as a repository if not already listed:
+[source,groovy]
+--------------------------------------
+repositories {
+    jcenter()
+    ...
+}
+--------------------------------------
+Alternatively, if you are not using TestNG, you can exclude `groovy-testng`, e.g.:
+[source,groovy]
+--------------------------------------
+dependencies {
+    implementation("org.codehaus.groovy:groovy-all:$groovyVersion") {
+        exclude(group: 'org.codehaus.groovy', module: 'groovy-testng')
+    }
+}
+--------------------------------------