Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for repository (0.22 sec)

  1. apache-maven/src/assembly/maven/conf/settings.xml

       |-->
      <mirrors>
        <!-- mirror
         | Specifies a repository mirror site to use instead of a given repository. The repository that
         | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
         | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
         |
        <mirror>
          <id>mirrorId</id>
          <mirrorOf>repositoryId</mirrorOf>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

                    <property name="test.projects.repository" value="repositories/central" />
    
                    <mkdir dir="${basedir}/target/test-classes/${test.projects.repository}/${test.projects.target.directory}/" />
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 08:59:31 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/multiple-repos/pom.xml

        <packaging>pom</packaging>
    
        <name>MNG-3984</name>
       <repositories>
         <repository>
           <id>central-parent</id>
           <name>Maven Repository Switchboard</name>
           <layout>default</layout>
           <url>https://repo1.maven.org/maven2</url>
           <snapshots>
             <enabled>false</enabled>
           </snapshots>
         </repository>
       </repositories>
    
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/multiple-repos/sub/pom.xml

       <version>0.1</version>
    
       <name>MNG-3984</name>
      <repositories>
        <repository>
          <id>central-child</id>
          <name>Maven Repository Switchboard</name>
          <layout>default</layout>
          <url>https://repo1.maven.org/maven2</url>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
      </repositories>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  5. maven-core/pom.xml

                  <exclude>org.apache.maven.repository.ArtifactDoesNotExistException</exclude>
                  <exclude>org.apache.maven.repository.ArtifactTransferEvent</exclude>
                  <exclude>org.apache.maven.repository.ArtifactTransferFailedException</exclude>
                  <exclude>org.apache.maven.repository.ArtifactTransferListener</exclude>
                  <exclude>org.apache.maven.repository.ArtifactTransferResource</exclude>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  6. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/rootless.paramdoc.xml

          <localRepository>/path/to/local/repository</localRepository>
          ]]></configuration>
          <description>The ArtifactRepository instance referencing the local artifact
            repository.</description>
          <cliOptions>
            <cliOption>
              <key>-Dmaven.repo.local=/path/to/local/repo</key>
              <value>Override the local repository location on a per-build basis.</value>
            </cliOption>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 1.8K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/bad-dependency.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>test</groupId>
      <artifactId>invalid</artifactId>
      <version>0.0.1-SNAPSHOT</version>
    
      <repositories>
        <repository>
          <id>central</id>
          <url>file:src/test/remote-repo</url>
        </repository>
      </repositories>
    
      <dependencies>
        <dependency>
          <!-- groupId deliberately missing -->
          <artifactId>b</artifactId>
          <version>0.1</version>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Sep 27 14:55:56 GMT 2011
    - 613 bytes
    - Viewed (0)
  8. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

    <distributionManagement>
      <!-- use the following if you're not using a snapshot version. -->
      <repository>
        <id>repo</id>
        <name>Repository Name</name>
        <url>scp://host/path/to/repo</url>
      </repository>
      <!-- use the following if you ARE using a snapshot version. -->
      <snapshotRepository>
        <id>repo</id>
        <name>Repository Name</name>
        <url>scp://host/path/to/repo</url>
      </snapshotRepository>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 5.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo/pom.xml

      <description>
        Test that multiple plugin repository declarations with the same id cause a validation error.
      </description>
    
      <pluginRepositories>
        <pluginRepository>
          <id>one</id>
          <url>https://repo1.maven.org/maven2</url>
        </pluginRepository>
        <pluginRepository>
          <id>one</id>
          <url>https://repository.codehaus.org/</url>
        </pluginRepository>
      </pluginRepositories>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/unique-repo-id/artifact-repo/pom.xml

      <description>
        Test that multiple artifact repository declarations with the same id cause a validation error.
      </description>
    
      <repositories>
        <repository>
          <id>one</id>
          <url>https://repo1.maven.org/maven2</url>
        </repository>
        <repository>
          <id>one</id>
          <url>https://repository.codehaus.org/</url>
        </repository>
      </repositories>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.4K bytes
    - Viewed (0)
Back to top