Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,088 for central (0.14 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

            // so add central to the computed settings for backward compatibility.
            if (effective.getRepositories().isEmpty()
                    && effective.getPluginRepositories().isEmpty()) {
                Repository central = Repository.newBuilder()
                        .id("central")
                        .name("Central Repository")
                        .url("https://repo.maven.apache.org/maven2")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

        /**
         * Adds a repository which looks in Gradle Central Plugin Repository for dependencies.
         *
         * @return The Gradle Central Plugin Repository
         * @since 4.4
         */
        @Adding
        ArtifactRepository gradlePluginPortal();
    
        /**
         * Adds a repository which looks in Gradle Central Plugin Repository for dependencies.
         *
         * @param action a configuration action
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    2.0-beta-2 maven-source-plugin 2.0-rc1 attach-sources jar true maven-surefire-plugin 2.0-beta-2-SNAPSHOT false snapshots Maven Central Development Repository http://snapshots.maven.codehaus.org/maven2 false central Maven Repository Switchboard http://www.ibiblio.org/maven2 false snapshots Maven Central Plugins Development Repository http://snapshots.maven.codehaus.org/maven2 false central Maven Plugin Repository http://www.ibiblio.org/maven2 junit junit 3.8.1 test target/site org.codehaus.plexus plexus-container-default...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

          </releases>
          <id>snapshots</id>
          <name>Maven Central Development Repository</name>
          <url>http://snapshots.maven.codehaus.org/maven2</url>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <releases>
            <enabled>false</enabled>
          </releases>
          <id>snapshots</id>
          <name>Maven Central Plugins Development Repository</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCacheServiceFactory.java

            // Use the deprecated retention period if configured on `DirectoryBuildCache`, or use the central 'buildCache' cleanup config if not.
            // If the deprecated property remains at the default, we can safely use the central value (which has the same default).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomBuilderTest.java

                project.setOriginalModel(model);
                project.setRemoteArtifactRepositories(Collections.singletonList(new MavenArtifactRepository(
                        "central", "http://repo.maven.apache.org/", new DefaultRepositoryLayout(), null, null)));
            }
            Model model = builder.build(session, project, file);
    
            assertNotNull(model);
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    │   ├── build.gradle.kts
    │   └── src
    └── ⋮                       // <8>
    ----
    <1> Project-specific cache directory generated by Gradle.
    <2> The version catalog which defines a set of versions for dependencies in a central location.
    <3> Contains the JAR file and configuration of the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/ProjectModelResolverTest.java

                    "Expected 'UnresolvableModelException' not thrown.");
            assertNotNull(e.getMessage());
            assertThat(e.getMessage(), containsString("Could not find artifact org.apache:apache:pom:0 in central"));
        }
    
        @Test
        void testResolveParentThrowsUnresolvableModelExceptionWhenNoMatchingVersionFound() throws Exception {
            final Parent parent = new Parent();
            parent.setGroupId("org.apache");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/groovy/org/gradle/connectivity/MavenCentralDependencyResolveIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires(UnitTestPreconditions.Online)
    class MavenCentralDependencyResolveIntegrationTest extends AbstractIntegrationSpec {
        def "resolves a minimal dependency from Maven Central"() {
            given:
            buildFile << """
    repositories {
        mavenCentral()
        mavenCentral { // just test this syntax works.
            name = "otherCentral"
            content {
                includeGroup 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationService.kt

    import org.jetbrains.annotations.TestOnly
    import org.jetbrains.kotlin.analysis.api.platform.KotlinPlatformComponent
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    /**
     * [KotlinGlobalModificationService] is a central service for the invalidation of caches during/between tests.
     *
     * All `publish` functions must be called in a write action because the events in [KotlinModificationTopics] guarantee that the listener is called in a
     * write action.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top