Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 162 for DistributionManagement (0.42 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            target.setUrl(source.getUrl().getOrNull());
            return target;
        }
    
        private static DistributionManagement convertDistributionManagement(MavenPomDistributionManagementInternal source) {
            DistributionManagement target = new DistributionManagement();
            target.setDownloadUrl(source.getDownloadUrl().getOrNull());
            if (source.getRelocation() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/project.xml

      <distributionManagement>
        <repository>
          <id>distributionRepositoryId</id>
          <name>distributionRepositoryName</name>
          <url>distributionRepository</url>
        </repository>
        <site>
          <id>siteDistributionId</id>
          <name>siteDistributionName</name>
          <url>siteDistributionUrl</url>
        </site>
      </distributionManagement>
    
      <organization>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 4.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/apache/apache/3/apache-3.pom

          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
          <releases>
            <enabled>false</enabled>
          </releases>
        </repository>
      </repositories>
      <distributionManagement>
        <!-- Site omitted - each project must provide their own -->
        <repository>
          <id>apache.releases</id>
          <name>Apache Release Distribution Repository</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. maven-core/src/test/remote-repo/org/apache/apache/1/apache-1.pom

          <url>http://svn.apache.org/maven-snapshot-repository</url>
          <releases>
            <enabled>false</enabled>
          </releases>
        </repository>
      </repositories>
      <distributionManagement>
        <!-- Site omitted - each project must provide their own -->
        <repository>
          <id>apache.releases</id>
          <name>Apache Release Distribution Repository</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/maven-publish/specify-relocation/groovy/library/build.gradle

                pom {
                    // Old artifact coordinates
                    groupId = "com.example"
                    artifactId = "lib"
                    version = "2.0.0"
    
                    distributionManagement {
                        relocation {
                            // New artifact coordinates
                            groupId = "com.new-example"
                            artifactId = "lib"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

         * <origin><![CDATA[
         * <distributionManagement>
         * <repository>
         * <id>some-repo</id>
         * <url>scp://host/path</url>
         * </repository>
         * <snapshotRepository>
         * <id>some-snap-repo</id>
         * <url>scp://host/snapshot-path</url>
         * </snapshotRepository>
         * </distributionManagement>
         * ]]></origin>
         * <usage><![CDATA[
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/fully-populated-child.xml

      <description>Description</description>
      <shortDescription>shortDescription</shortDescription>
      <url>http://maven.apache.org/</url>
      <issueTrackingUrl>issueTrackingUrl</issueTrackingUrl>
      <distributionManagement>
        <repository>
          <id>childDistributionRepositoryId</id>
          <name>childDistributionRepositoryName</name>
          <url>childDistributionRepository</url>
        </repository>
        <site>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 4.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom

          <groupId>avalon-framework</groupId>
          <artifactId>avalon-framework</artifactId>
          <version>4.1.3</version>
          <optional>true</optional>
        </dependency>
      </dependencies>
      <distributionManagement>
        <repository>
          <id>default</id>
          <name>Default Repository</name>
          <url>file:///www/jakarta.apache.org/builds/jakarta-commons/logging/</url>
        </repository>
        <site>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomRelocationIntegrationTest.groovy

            module.pomFile.text = """
    <project>
        <groupId>${groupId}</groupId>
        <artifactId>${artifactId}</artifactId>
        <version>1.0</version>
        <distributionManagement>
            <relocation>
                ${relocation}
            </relocation>
        </distributionManagement>
    </project>
    """
            return module
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/pom-inheritance/pom.xml

      </scm>
      <issueManagement>
        <url>https://parent.url/issues</url>
      </issueManagement>
      <ciManagement>
        <url>https://parent.url/ci</url>
      </ciManagement>
      <distributionManagement>
        <repository>
          <url>https://parent.url/dist</url>
          <id>parent.distros</id>
        </repository>
        <snapshotRepository>
          <url>https://parent.url/snaps</url>
          <id>parent.snaps</id>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 5K bytes
    - Viewed (0)
Back to top