Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for DependencyManagement (0.31 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    .Adding a variant to an existing software component
    ====
    include::sample[dir="snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/kotlin/buildSrc/src/main/kotlin/com/acme",files="InstrumentedJarsPlugin.kt[tags=add_variant_to_existing_component]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

                }
                dependency("org.test:foo:1.0") {
                    exists()
                }
                noMoreDependencies()
            }
            def dependencies = javaLibrary.parsedPom.dependencyManagement.dependencies[0].dependency
            dependencies.size() == 1
            dependencies[0].with {
                assert it.groupId.text() == 'org.test'
                assert it.artifactId.text() == 'bar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. android/pom.xml

          <!--
          We moved away from using dependencyManagement for test-only deps because of https://github.com/google/guava/issues/6654.
          We could probably have resumed it after https://github.com/google/guava/pull/6664.
          But it's always weird that published poms reference test-only libraries at all, so I'm not in any rush to do so.
          -->
        </dependencies>
      </dependencyManagement>
      <profiles>
        <profile>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pom.xml

          <!--
          We moved away from using dependencyManagement for test-only deps because of https://github.com/google/guava/issues/6654.
          We could probably have resumed it after https://github.com/google/guava/pull/6664.
          But it's always weird that published poms reference test-only libraries at all, so I'm not in any rush to do so.
          -->
        </dependencies>
      </dependencyManagement>
      <profiles>
        <profile>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    .Declaring multiple repositories
    ====
    include::sample[dir="snippets/dependencyManagement/declaringRepositories-multipleRepositories/kotlin",files="build.gradle.kts[tags=multiple-repositories]"]
    include::sample[dir="snippets/dependencyManagement/declaringRepositories-multipleRepositories/groovy",files="build.gradle[tags=multiple-repositories]"]
    ====
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertViolations(result, 0, 1, 0);
    
            assertTrue(result.getErrors()
                    .get(0)
                    .contains("'dependencyManagement.dependencies.dependency.artifactId' for groupId:null:jar is missing"));
        }
    
        @Test
        void testMissingDependencyManagementGroupId() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  7. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            and:
            publication.from(createComponent([], [moduleDependency], scope))
    
            then:
            publication.pom.dependencies.get().dependencyManagement.size() == 1
            with(publication.pom.dependencies.get().dependencyManagement.asList().first()) {
                groupId == "plat-group"
                artifactId == "plat-name"
                version == "mapped-plat-version"
                type == "pom"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>${junitVersion}</version>
          <scope>test</scope>
        </dependency>
      </dependencies>
      <dependencyManagement>
        <!--end-->
        <dependencies>
          <!--  Maven Modules -->
          <!--start-->
          <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-mercury</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Aug 03 09:29:10 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    All dependencies of those scopes are considered _runtime dependencies_.
    - in both cases, the `<dependencyManagement>` dependencies are _not converted to constraints_
    * a "sources" variant that represents the sources jar for the component
    * a "javadoc" variant that represents the javadoc jar for the component
    * four "platform" variants derived from the `<dependencyManagement>` block (attribute `org.gradle.category` = `platform`):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

                    expectFiles 'bar-1.1.jar', 'foo-1.0.jar', 'library-1.0.jar'
                }
                withoutModuleMetadata {
                    // This is caused by the dependency on the platform appearing as a dependencyManagement entry with scope=import, type=pom
                    // and thus its dependencies are ignored.
                    expectFiles 'bar-1.1.jar', 'library-1.0.jar'
                }
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top