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:31 UTC

[groovy] 03/03: exclude binary .gpg optimized version of metadata (compile from source will still work just slightly slower)

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 ecf93b4d62230def3be79ab95c4ab0f4a6a7c156
Author: Paul King <pa...@asert.com.au>
AuthorDate: Sat Oct 10 11:20:18 2020 +1000

    exclude binary .gpg optimized version of metadata (compile from source will still work just slightly slower)
---
 subprojects/groovy-binary/build.gradle | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/subprojects/groovy-binary/build.gradle b/subprojects/groovy-binary/build.gradle
index a9d1ddd..a90a99b 100644
--- a/subprojects/groovy-binary/build.gradle
+++ b/subprojects/groovy-binary/build.gradle
@@ -169,17 +169,17 @@ distribution {
             from(file) {
                 if (file.directory) {
                     into file.name
+                    exclude 'build',
+                            'target',
+                            'wrapper',        // used by Gradle
+                            '**/*.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
+                            '*.gpg'           // used by Gradle
                 }
-                exclude 'build',
-                        'target',
-                        'wrapper',        // used by Gradle
-                        '**/*.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
-                        '*/*.gpg'         // used by Gradle
             }
         }
     }