You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2018/12/15 10:10:54 UTC

[groovy] branch refine-groovydoc created (now aca9638)

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

sunlan pushed a change to branch refine-groovydoc
in repository https://gitbox.apache.org/repos/asf/groovy.git.


      at aca9638  Initial commit: refine groovydoc with javaparser

This branch includes the following new commits:

     new aca9638  Initial commit: refine groovydoc with javaparser

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[groovy] 01/01: Initial commit: refine groovydoc with javaparser

Posted by su...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sunlan pushed a commit to branch refine-groovydoc
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit aca9638e7d49a616da0b9b4ed9e7c80d2abf8726
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sat Dec 15 18:08:48 2018 +0800

    Initial commit: refine groovydoc with javaparser
---
 subprojects/groovy-groovydoc/build.gradle | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/subprojects/groovy-groovydoc/build.gradle b/subprojects/groovy-groovydoc/build.gradle
index 2e9f98c..719e61a 100644
--- a/subprojects/groovy-groovydoc/build.gradle
+++ b/subprojects/groovy-groovydoc/build.gradle
@@ -16,8 +16,14 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
+
+ext {
+    javaparserVersion = '3.8.2'
+}
+
 dependencies {
     compile rootProject
+    compile "com.github.javaparser:javaparser-symbol-solver-core:$javaparserVersion"
     testCompile rootProject.sourceSets.test.runtimeClasspath
     compile project(':groovy-cli-picocli')
     compile project(':groovy-templates')