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/10/10 01:20:29 UTC

[groovy] 01/03: exclude out dir plus formatting

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

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

commit 087da09c4e09b5cdbaf438a06c0e3c5a5d225b40
Author: Paul King <pa...@asert.com.au>
AuthorDate: Sat Oct 10 10:20:24 2020 +1000

    exclude out dir plus formatting
---
 subprojects/groovy-binary/build.gradle  | 13 +++++++------
 subprojects/groovy-servlet/build.gradle |  6 ++----
 2 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/subprojects/groovy-binary/build.gradle b/subprojects/groovy-binary/build.gradle
index d68964f..a9d1ddd 100644
--- a/subprojects/groovy-binary/build.gradle
+++ b/subprojects/groovy-binary/build.gradle
@@ -137,12 +137,13 @@ distribution {
                 from(project.projectDir) {
                     exclude 'build',
                             'target',
-                            '**/*.iml',         // used by Intellij IDEA
-                            '**/*.ipr',         // used by Intellij IDEA
-                            '**/*.iws',         // used by Intellij IDEA
-                            '.settings',        // used by Eclipse
-                            '.classpath',        // used by Eclipse
-                            '.gradle'        // used by Gradle
+                            'out',             // used by Intellij IDEA
+                            '**/*.iml',        // used by Intellij IDEA
+                            '**/*.ipr',        // used by Intellij IDEA
+                            '**/*.iws',        // used by Intellij IDEA
+                            '.settings',       // used by Eclipse
+                            '.classpath',      // used by Eclipse
+                            '.gradle'          // used by Gradle
                 }
             }
         }
diff --git a/subprojects/groovy-servlet/build.gradle b/subprojects/groovy-servlet/build.gradle
index 1e8356f..5225d48 100644
--- a/subprojects/groovy-servlet/build.gradle
+++ b/subprojects/groovy-servlet/build.gradle
@@ -27,10 +27,8 @@ dependencies {
     }
 
     api rootProject  // ServletBinding extends Binding...
-    // needed for MarkupBuilder
-    implementation project(':groovy-xml')
-    // needed by TemplateServlet
-    implementation project(':groovy-templates')
+    implementation project(':groovy-xml') // needed for MarkupBuilder
+    implementation project(':groovy-templates') // needed by TemplateServlet
 
     testImplementation('javax.servlet:javax.servlet-api:3.0.1')
     testImplementation('javax.servlet:jsp-api:2.0') {