Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for gradleApi (0.78 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                            repositories {
                                mavenCentral()
                            }
                            dependencies {
                                "implementation"(gradleApi())
                                "implementation"(kotlin("stdlib"))
                            }
                        }
                        project(":v1") {
                            version = "1.0"
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    The <<java_gradle_plugin.adoc#java_gradle_plugin,Gradle Plugin Development plugin>> can be used to assist in developing Gradle plugins.
    
    This plugin will automatically apply the <<java_plugin.adoc#java_plugin,Java Plugin>>, add the `gradleApi()` dependency to the `api` configuration, generate the required plugin descriptors in the resulting JAR file, and configure the <<plugins.adoc#sec:plugin_markers,Plugin Marker Artifact>> to be used when publishing.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

            }
        }
    
        private
        suspend fun WriteContext.encode(value: DefaultLocalFileDependencyBackedArtifactSet) {
            // TODO - When the set of files is fixed (eg `gradleApi()` or some hard-coded list of files):
            //   - calculate the attributes for each of the files eagerly rather than writing the mappings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                    group = 'com.acme.typed-attributes'
                    version = '$version'
    
                    dependencies {
                        implementation localGroovy()
                        implementation gradleApi()
                    }
    
                    publishing {
                        repositories {
                            maven {
                                url "${mavenRepo.uri}"
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

            !inputArtifactNames.empty
            (inputArtifactNames as Set).size() == inputArtifactNames.size()
    
            where:
            classpathNotation   | displayName
            'gradleApi()'       | 'Gradle API'
            'gradleTestKit()'   | 'Gradle TestKit'
            'localGroovy()'     | 'Local Groovy'
            'gradleKotlinDsl()' | 'Gradle Kotlin DSL'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            buildScript '''
                plugins {
                    id 'java-library'
                }
    
                dependencies {
                    implementation(gradleApi())
                }
    
                @CacheableTask
                abstract class PrintArtifactIds extends DefaultTask {
    
                    @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    We believe this situation is very unlikely to occur in real projects, as IDE integration and test execution would not work correctly.
    If you need to use the Gradle API, declare a `gradleApi` dependency or use the `java-gradle-plugin` plugin.
    
    ==== Configuration cache implementation packages now under `org.gradle.internal`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import com.gradleup.gr8.EmbeddedJarTask
    import com.gradleup.gr8.Gr8Task
    import java.util.jar.Attributes
    
    plugins {
        id("gradlebuild.distribution.api-java")
        id("com.gradleup.gr8") version "0.10"
    }
    
    description = "Entry point of the Gradle wrapper command"
    
    gradlebuildJava.usedInWorkers()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

        def "uses modules to determine gradle API classpath"() {
            when:
            def classpath = provider.findClassPath("GRADLE_API")
    
            then:
            classpath.asFiles.collect{it.name} == [
                "gradle-worker-main-runtime",
                "gradle-launcher-runtime",
                "gradle-cli-runtime",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

    public class DefaultScriptClassPathResolver implements ScriptClassPathResolver {
    
        private static final Set<ClassPathNotation> GRADLE_API_NOTATIONS = EnumSet.of(
            ClassPathNotation.GRADLE_API,
            ClassPathNotation.LOCAL_GROOVY
        );
    
        public enum InstrumentationPhase {
            NOT_INSTRUMENTED("not-instrumented"),
            ANALYZED_ARTIFACT("analyzed-artifact"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top