Skip to content

Commit

Permalink
MINOR: reformat settings.gradle to be more readable (#6621)
Browse files Browse the repository at this point in the history
Reviewers: Jason Gustafson <[email protected]>
  • Loading branch information
cmccabe authored Apr 23, 2019
1 parent 9ff4905 commit 9e10916
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 7 deletions.
21 changes: 19 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
30 changes: 25 additions & 5 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 9e10916

Please sign in to comment.