Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release'
Browse files Browse the repository at this point in the history
* origin/release:
  Allow running build types for multiple subprojects at once
  Fix kotlin-dsl regression #9919
  • Loading branch information
big-guy committed Jul 10, 2019
2 parents 204f0f8 + 3245f74 commit 1a202f2
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
@@ -0,0 +1,38 @@
/*
* Copyright 2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.gradle.kotlin.dsl.integration

import org.junit.Test
import spock.lang.Issue


class GradleKotlinDslRegressionsTest : AbstractPluginIntegrationTest() {

@Test
@Issue("https://github.com/gradle/gradle/issues/9919")
fun `gradleKotlinDsl dependency declaration does not throw`() {

withBuildScript("""
plugins { java }
dependencies {
compileOnly(gradleKotlinDsl())
}
""")

build("help")
}
}
Expand Up @@ -225,7 +225,7 @@ inline fun <reified T> Project.container(noinline factory: (String) -> T): Named
*/
fun Project.gradleKotlinDsl(): Dependency =
DefaultSelfResolvingDependency(
fileCollectionOf(
project.fileCollectionOf(
gradleKotlinDslOf(project),
"gradleKotlinDsl"
) as FileCollectionInternal
Expand Down

0 comments on commit 1a202f2

Please sign in to comment.