Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for Module (0.72 sec)

  1. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

     * limitations under the License.
     */
    
    import org.gradle.external.javadoc.StandardJavadocDocletOptions
    import java.time.Year
    
    plugins {
        id("gradlebuild.module-identity")
        id("gradlebuild.publish-defaults")
        id("signing")
        `maven-publish`
    }
    
    configureJavadocVariant()
    
    publishing {
        publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. build-logic-commons/gradle-plugin/build.gradle.kts

        }
    }
    
    dependencies {
        compileOnly("com.gradle:develocity-gradle-plugin:3.17.4")
    
        api(platform(project(":build-platform")))
    
        implementation(project(":basics"))
        implementation(project(":module-identity"))
        implementation("net.ltgt.gradle:gradle-errorprone-plugin:3.1.0")
    
        implementation("org.gradle.kotlin.kotlin-dsl:org.gradle.kotlin.kotlin-dsl.gradle.plugin:4.4.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 977 bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

     */
    package gradlebuild.modules.extension
    
    import gradlebuild.modules.model.License
    
    
    abstract class ExternalModulesExtension(isBundleGroovy4: Boolean) {
    
        val groovyVersion = if (isBundleGroovy4) "4.0.20" else "3.0.21"
        val configurationCacheReportVersion = "1.5"
        val gradleIdeStarterVersion = "0.3"
        val kotlinVersion = "1.9.23"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

    plugins {
        id("gradlebuild.module-identity")
    }
    
    repositories {
        ['distributions', 'distributions-snapshots'].each { distUrl ->
            ivy {
                name 'Gradle distributions'
                url 'https://services.gradle.org'
                patternLayout {
                    artifact "/${distUrl}/[module]-[revision]-bin(.[ext])"
                }
                metadataSources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. build-logic/profiling/src/main/kotlin/gradlebuild.buildscan.gradle.kts

    import java.net.InetAddress
    import java.net.URLEncoder
    
    plugins {
        id("gradlebuild.collect-failed-tasks")
        id("gradlebuild.cache-miss-monitor")
        id("gradlebuild.module-identity")
    }
    
    val serverUrl = "https://ge.gradle.org"
    val gitCommitName = "gitCommitId"
    val tcBuildTypeName = "tcBuildType"
    
    // We can not use plugin {} because this is registered by a settings plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

            def projectConfig = configureProject(username, password, "ivyRepo", false)
            def configurationCache = newConfigurationCacheFixture()
            def metadataFile = file('build/publications/ivy/module.json')
    
            expect:
            !GUtil.isSecureUrl(server.uri)
    
            when:
            prepareIvyHttpRepository(projectConfig.remoteRepo, new DefaultPasswordCredentials(username, password))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. architecture/runtimes.md

    ## Composition by architecture modules
    
    Each [architecture module and platform](platforms.md) can contribute code to any of the runtimes.
    Not every module contributes to every runtime.
    
    The core-runtime module defines each runtime:
    
    - The target JVM for the runtime. Each runtime has its own JVM compatibility constraints.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    coreRuntimeOnly.description = "To define dependencies to the Gradle modules that make up the core of the distributions (lib/*.jar)"
    val pluginsRuntimeOnly by bucket()
    pluginsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent additional plugins packaged in the distributions (lib/plugins/*.jar)"
    val agentsRuntimeOnly by bucket()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                        }
                        subprojects {
                            apply(plugin = "gradlebuild.module-identity")
                            apply(plugin = "kotlin")
                            the<ModuleIdentityExtension>().baseName.set("api-module")
                            repositories {
                                mavenCentral()
                            }
                            dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. gradlew

        esac
    fi
    
    # Collect all arguments for the java command, stacking in reverse order:
    #   * args from the command line
    #   * the main class name
    #   * -classpath
    #   * -D...appname settings
    #   * --module-path (only if needed)
    #   * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
    
    # For Cygwin or MSYS, switch paths to Windows format before running java
    if "$cygwin" || "$msys" ; then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top