You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by cm...@apache.org on 2019/04/23 23:16:46 UTC

[kafka] branch trunk updated: MINOR: reformat settings.gradle to be more readable (#6621)

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

cmccabe pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 9e10916  MINOR: reformat settings.gradle to be more readable (#6621)
9e10916 is described below

commit 9e10916abda2f2a3911b8ff50ad7f76bf1f45030
Author: Colin Patrick McCabe <co...@cmccabe.xyz>
AuthorDate: Tue Apr 23 16:16:25 2019 -0700

    MINOR: reformat settings.gradle to be more readable (#6621)
    
    Reviewers: Jason Gustafson <ja...@confluent.io>
---
 build.gradle    | 21 +++++++++++++++++++--
 settings.gradle | 30 +++++++++++++++++++++++++-----
 2 files changed, 44 insertions(+), 7 deletions(-)

diff --git a/build.gradle b/build.gradle
index ba674e6..776af9d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -604,8 +604,25 @@ for ( sv in availableScalaVersions ) {
   }
 }
 
-def connectPkgs = ['connect:api', 'connect:runtime', 'connect:transforms', 'connect:json', 'connect:file', 'connect:basic-auth-extension']
-def pkgs = ['clients', 'examples', 'log4j-appender', 'tools', 'streams', 'streams:streams-scala', 'streams:test-utils', 'streams:examples'] + connectPkgs
+def connectPkgs = [
+    'connect:api',
+    'connect:basic-auth-extension',
+    'connect:file',
+    'connect:json',
+    'connect:runtime',
+    'connect:transforms'
+]
+
+def pkgs = [
+    'clients',
+    'examples',
+    'log4j-appender',
+    'streams',
+    'streams:examples',
+    'streams:streams-scala',
+    'streams:test-utils',
+    'tools'
+] + connectPkgs
 
 /** Create one task per default Scala version */
 def withDefScalaVersions(taskName) {
diff --git a/settings.gradle b/settings.gradle
index 5ae78e4..b2814b1 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -13,8 +13,28 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-include 'core', 'examples', 'clients', 'tools', 'streams', 'streams:streams-scala', 'streams:test-utils', 'streams:examples',
-        'streams:upgrade-system-tests-0100', 'streams:upgrade-system-tests-0101', 'streams:upgrade-system-tests-0102',
-        'streams:upgrade-system-tests-0110', 'streams:upgrade-system-tests-10', 'streams:upgrade-system-tests-11', 'streams:upgrade-system-tests-20',
-        'streams:upgrade-system-tests-21' , 'log4j-appender', 'connect:api', 'connect:transforms', 'connect:runtime', 'connect:json', 'connect:file',
-        'connect:basic-auth-extension', 'jmh-benchmarks', 'generator'
+include 'clients',
+    'connect:api',
+    'connect:basic-auth-extension',
+    'connect:file',
+    'connect:json',
+    'connect:runtime',
+    'connect:transforms',
+    'core',
+    'examples',
+    'generator',
+    'jmh-benchmarks',
+    'log4j-appender',
+    'streams',
+    'streams:examples',
+    'streams:streams-scala',
+    'streams:test-utils',
+    'streams:upgrade-system-tests-0100',
+    'streams:upgrade-system-tests-0101',
+    'streams:upgrade-system-tests-0102',
+    'streams:upgrade-system-tests-0110',
+    'streams:upgrade-system-tests-10',
+    'streams:upgrade-system-tests-11',
+    'streams:upgrade-system-tests-20',
+    'streams:upgrade-system-tests-21',
+    'tools'