Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 998 for central (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr5_build_scripts.adoc

    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    repositories {
        mavenCentral()  // get dependencies from the Maven central repository
    }
    ----
    =====
    [.multi-language-sample]
    =====
    [source, groovy]
    ----
    repositories {
        mavenCentral()  // get dependencies from the Maven central repository
    }
    ----
    =====
    
    Dependencies are requirements for building your application or library:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

            builder.repositories().maven("Use another repo as well", "https://somewhere")
            builder.repositories().maven(null, "https://somewhere/2")
            builder.repositories().mavenCentral("Use Maven Central")
    
            when:
            builder.create(target).generate()
    
            then:
            assertOutputFile("""/*
     * This file was generated by the Gradle 'init' task.
     */
    
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

    Use Maven Central
    
    Alternatively:
    - Could use Google's Maven repository
    - Or a local mirror
    
    """)
    
            when:
            builder.create(target).generate()
    
            then:
            //mind the trailing whitespace at the empty commented line
            assertOutputFile("""$COMMON_START
     */
    
    repositories {
        // Use Maven Central
        // ${""}
        // Alternatively:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. src/runtime/mgcsweep.go

    			// an unswept set, then the mcentral will pop it off the
    			// set, check its sweepgen, and ignore it.
    			if nalloc == 0 {
    				// Free totally free span directly back to the heap.
    				mheap_.freeSpan(s)
    				return true
    			}
    			// Return span back to the right mcentral list.
    			if nalloc == s.nelems {
    				mheap_.central[spc].mcentral.fullSwept(sweepgen).push(s)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Usually, a rule is specifically written to enrich metadata of one specific module and hence the `withModule` API should be preferred.
    
    [[sec:rules_in_settings]]
    === Declaring rules in a central place
    
    NOTE: Declaring component metadata rules in settings is an incubating feature
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    tasks.named<Test>("test") {
        useJUnitPlatform()                                              // <7>
    }
    ----
    <1> Apply the application plugin to add support for building a CLI application in Java.
    <2> Use Maven Central for resolving dependencies.
    <3> Use JUnit Jupiter for testing (using the version catalog).
    <4> This dependency is used by the application (referred using the version catalog).
    <5> Define the toolchain version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

            DefaultSession session = new DefaultSession(
                    rsession,
                    system,
                    List.of(lookup.lookup(RepositoryFactory.class)
                            .createRemote("central", "https://repo.maven.apache.org/maven2")),
                    null,
                    lookup);
    
            Settings settings = session.getService(SettingsBuilder.class)
                    .build(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationRepositoriesBuildOperationIntegrationTest.groovy

            'flat-dir'             | flatDirRepoBlock()            | expectedFlatDirRepo()            | null
            'local maven'          | mavenLocalRepoBlock()         | expectedMavenLocalRepo()         | null
            'maven central'        | mavenCentralRepoBlock()       | expectedMavenCentralRepo()       | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

                </plugin>
            </plugins>
        </reporting>
    
        <profiles>
            <profile>
                <id>junit-release</id>
                <!--
                Signs all artifacts before deploying to Maven Central.
                -->
                <build>
                    <plugins>
                        <plugin>
                            <!--
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                </plugin>
            </plugins>
        </reporting>
    
        <profiles>
            <profile>
                <id>junit-release</id>
                <!--
                Signs all artifacts before deploying to Maven Central.
                -->
                <build>
                    <plugins>
                        <plugin>
                            <!--
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
Back to top