Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ExternalModulesExtension (0.09 sec)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package gradlebuild.modules.extension
    
    import gradlebuild.modules.model.License
    
    
    abstract class ExternalModulesExtension(bundleGroovyMajor: Int) {
    
        val groovyVersion = when (bundleGroovyMajor) {
            4 -> "4.0.29"
            // This is expected to contain Groovy 5 soon, once it's released or we need to test it.
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:45:52 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTaskWithKotlin.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.binarycompatibility;
    
    import gradlebuild.modules.extension.ExternalModulesExtension;
    import me.champeau.gradle.japicmp.JapicmpTask;
    import org.gradle.api.Project;
    import org.gradle.api.artifacts.Configuration;
    import org.gradle.api.artifacts.dsl.DependencyHandler;
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Dec 24 14:15:15 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            dependencies {
                "${prefix}TestImplementation"(project)
                "${prefix}TestImplementation"(project.the<ExternalModulesExtension>().junitJupiter)
                "${prefix}TestRuntimeOnly"(project.the<ExternalModulesExtension>().junitPlatform)
                "${prefix}TestRuntimeOnly"(project.the<ExternalModulesExtension>().junit5Vintage)
                "${prefix}TestImplementation"(project(":internal-integ-testing"))
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 18 16:39:23 UTC 2025
    - 12.8K bytes
    - Viewed (0)
Back to top