mirror of https://github.com/apache/kafka.git
MINOR: reformat settings.gradle to be more readable (#6621)
Reviewers: Jason Gustafson <jason@confluent.io>
This commit is contained in:
parent
9ff490509f
commit
9e10916abd
21
build.gradle
21
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 connectPkgs = [
|
||||||
def pkgs = ['clients', 'examples', 'log4j-appender', 'tools', 'streams', 'streams:streams-scala', 'streams:test-utils', 'streams:examples'] + 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 */
|
/** Create one task per default Scala version */
|
||||||
def withDefScalaVersions(taskName) {
|
def withDefScalaVersions(taskName) {
|
||||||
|
|
|
@ -13,8 +13,28 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
include 'core', 'examples', 'clients', 'tools', 'streams', 'streams:streams-scala', 'streams:test-utils', 'streams:examples',
|
include 'clients',
|
||||||
'streams:upgrade-system-tests-0100', 'streams:upgrade-system-tests-0101', 'streams:upgrade-system-tests-0102',
|
'connect:api',
|
||||||
'streams:upgrade-system-tests-0110', 'streams:upgrade-system-tests-10', 'streams:upgrade-system-tests-11', 'streams:upgrade-system-tests-20',
|
'connect:basic-auth-extension',
|
||||||
'streams:upgrade-system-tests-21' , 'log4j-appender', 'connect:api', 'connect:transforms', 'connect:runtime', 'connect:json', 'connect:file',
|
'connect:file',
|
||||||
'connect:basic-auth-extension', 'jmh-benchmarks', 'generator'
|
'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'
|
||||||
|
|
Loading…
Reference in New Issue