Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for javaPlatform (0.35 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.play.platform.PlayPlatform.xml

                </thead>
                <tr>
                    <td>playVersion</td>
                </tr>
                <tr>
                    <td>scalaPlatform</td>
                </tr>
                <tr>
                    <td>javaPlatform</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java-platform/multiproject/kotlin/platform/build.gradle.kts

            api(project(":lib"))
        }
    }
    // end::project-constraints[]
    
    // tag::publishing[]
    publishing {
        publications {
            create<MavenPublication>("myPlatform") {
                from(components["javaPlatform"])
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 441 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-platform/multiproject/groovy/platform/build.gradle

            api project(":lib")
        }
    }
    // end::project-constraints[]
    
    // tag::publishing[]
    publishing {
        publications {
            myPlatform(MavenPublication) {
                from components.javaPlatform
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 430 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/platforms/product-platform/build.gradle

    plugins {
        id('java-platform')
    }
    
    group = 'com.example.platform'
    
    // allow the definition of dependencies to other platforms like the Spring Boot BOM
    javaPlatform.allowDependencies()
    
    dependencies {
        api(platform('org.springframework.boot:spring-boot-dependencies:2.7.8'))
    
        constraints {
            api('org.apache.juneau:juneau-marshall:8.2.0')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 361 bytes
    - Viewed (0)
  5. subprojects/core-platform/build.gradle.kts

    plugins {
        id("gradlebuild.platform")
    }
    
    description = "Defines which JARs go into the core part (libs/*.jar) of a Gradle distribution (NOT libs/plugins/*.jar)."
    
    javaPlatform.allowDependencies()
    
    dependencies {
        runtime(project(":installation-beacon"))
        runtime(project(":api-metadata"))
        runtime(project(":daemon-server")) {
            because("This is the Gradle daemon implementation, which transitively depends on all other core projects.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/jvm/java-platform/src/main/java/org/gradle/api/plugins/JavaPlatformPlugin.java

            "Most likely you want to add constraints instead.\n" +
            "If you did this intentionally, you need to configure the platform extension to allow dependencies:\n    javaPlatform.allowDependencies()\n" +
            "Found dependencies in the '%s' configuration.";
    
        private final SoftwareComponentFactory softwareComponentFactory;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

    allprojects {
        apply plugin: 'maven-publish'
    
        group = "org.test"
        version = "1.0"
    
        ${mavenTestRepository()}
    }
    
    project(":$platformName") {
        apply plugin: 'java-platform'
    
        javaPlatform {
            allowDependencies()
        }
    
        dependencies {
            api "org.test:foo:1.0"
            constraints {
                api "org.test:bar:1.1"
            }
        }
        publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/NativeAlignmentWithJavaPlatformResolveIntegrationTest.groovy

                    }
                }
    
                publishing {
                    publications {
                        maven(MavenPublication) {
                            from components.javaPlatform
                        }
                    }
                }
            """
            file("core/build.gradle") << """
                plugins {
                    id 'java-library'
                }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/software/maven/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/maven/AbstractMavenPublishIntegTest.groovy

            return new MavenJavaModule(mavenFileModule, features, withDocumentation)
        }
    
        protected static MavenJavaPlatformModule javaPlatform(MavenFileModule mavenFileModule) {
            return new MavenJavaPlatformModule(mavenFileModule)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. build.gradle.kts

        kotlinExtension.sourceSets.configureEach {
          languageSettings.optIn("okhttp3.ExperimentalOkHttpApi")
        }
      }
    }
    
    /** Configure publishing and signing for published Java and JavaPlatform subprojects. */
    subprojects {
      tasks.withType<DokkaTaskPartial>().configureEach {
        dokkaSourceSets.configureEach {
          reportUndocumented.set(false)
          skipDeprecated.set(true)
          jdkVersion.set(8)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:32:42 UTC 2024
    - 8.9K bytes
    - Viewed (1)
Back to top