Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,214 for central (0.28 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom

      </mailingLists>
    
      <distributionManagement>
        <repository>
          <id>repo1</id>
          <name>Maven Central Repository</name>
          <url>scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2</url>
        </repository>
        <snapshotRepository>
          <id>snapshots</id>
          <name>Maven Central Development Repository</name>
          <url>scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2</url>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

            url "gcs://myCompanyBucket/maven2"
        }
    
        ivy {
            url "gcs://myCompanyBucket/ivyrepo"
        }
    }
    // end::maven-ivy-gcs-repository[]
    
    // tag::maven-central[]
    repositories {
        mavenCentral()
    }
    // end::maven-central[]
    
    // tag::maven-google[]
    repositories {
        google()
    }
    // end::maven-google[]
    
    // tag::maven-local[]
    repositories {
        mavenLocal()
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/GroovyProjectIntegrationTest.groovy

            file("settings.gradle") << "rootProject.name='javaOnly'"
    
            when:
            run "build"
    
            then:
            file("build/libs/javaOnly.jar").exists()
        }
    
        def "supports central repository declaration"() {
            given:
            buildFile << """
    plugins {
        id 'groovy'
    }
    
    dependencies {
        implementation 'org.codehaus.groovy:groovy-all:2.5.13'
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/ScalaProjectIntegrationTest.groovy

                    ${mavenCentralRepository()}
                }
            """
            expect:
            succeeds "build"
            file("build/libs/javaOnly.jar").assertExists()
        }
    
        def "supports central repository declaration"() {
            given:
            buildFile << """
    plugins {
        id 'scala'
    }
    dependencies {
        implementation 'org.scala-lang:scala-library:2.11.12'
    }
    """
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom

      </issueManagement>
    
      <distributionManagement>
        <repository>
          <id>codehaus.org</id>
          <name>Plexus Central Repository</name>
          <url>dav:https://dav.codehaus.org/repository/plexus</url>
        </repository>
        <snapshotRepository>
          <id>codehaus.org</id>
          <name>Plexus Central Development Repository</name>
          <url>dav:https://dav.codehaus.org/snapshots.repository/plexus</url>
        </snapshotRepository>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. 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)
  7. README.md

    ====
    [![Java CI with Maven](https://github.com/codelibs/fess/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/fess/actions/workflows/maven.yml)
    [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.codelibs.fess/fess/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.codelibs.fess/fess)
    [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/gitbucket/gitbucket/blob/master/LICENSE)
    
    ## Overview
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. 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)
  9. docs/releasing.md

    Releasing
    =========
    
    ### Prerequisite: Sonatype (Maven Central) Account
    
    Create an account on the [Sonatype issues site][sonatype_issues]. Ask an existing publisher to open
    an issue requesting publishing permissions for `com.squareup` projects.
    
    
    Cutting a Release
    -----------------
    
    1. Update `CHANGELOG.md`.
    
    2. Set versions:
    
        ```
        export RELEASE_VERSION=X.Y.Z
        export NEXT_VERSION=X.Y.Z-SNAPSHOT
        ```
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Dec 26 22:07:16 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom

      </issueManagement>
    
      <distributionManagement>
        <repository>
          <id>codehaus.org</id>
          <name>Plexus Central Repository</name>
          <url>dav:https://dav.codehaus.org/repository/plexus</url>
        </repository>
        <snapshotRepository>
          <id>codehaus.org</id>
          <name>Plexus Central Development Repository</name>
          <url>dav:https://dav.codehaus.org/snapshots.repository/plexus</url>
        </snapshotRepository>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 7.1K bytes
    - Viewed (0)
Back to top