Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for DependencyManagement (0.42 sec)

  1. maven-core/src/test/resources/org/apache/maven/lifecycle/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: Sat Sep 11 08:52:20 UTC 2021
    - 22.4K bytes
    - Viewed (0)
  2. maven-core/src/test/projects/lifecycle-executor/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)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    This is done by deactivating global dependency substitution rules:
    
    ====
    include::sample[dir="snippets/dependencyManagement/customizingResolution-deactivateGlobalSubstitution/kotlin",files="build.gradle.kts[tags=disableGlobalDependencySubstitutionRules]"]
    include::sample[dir="snippets/dependencyManagement/customizingResolution-deactivateGlobalSubstitution/groovy",files="build.gradle[tags=disableGlobalDependencySubstitutionRules]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

                    }
                }
            """
    
            when:
            succeeds "publish"
    
            then:
            repoModule.assertPublished()
            def depMan = (repoModule.parsedPom.dependencyManagement.get("dependencies"))[0] as Node
            depMan.children().size() == 1
            with(depMan.children().first()) {
                groupId.text() == "org"
                artifactId.text() == "foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    However, the dependencies are included on runtime and test runtime classpaths, so use these configurations if that's the behavior you need.
    
    `import`::
    The `import` scope is mostly used within `<dependencyManagement>` blocks and applies solely to POM-only publications.
    Read the section on <<migmvn:using_boms,Using bills of materials>> to learn more about how to replicate this behavior.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. maven-model-builder/src/site/apt/index.apt

       ({{{./maven-core/xref/org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector.html}source}})
    
       ** dependency management import (for dependencies of type <<<pom>>> and scope <<<import>>> in the <<<\<dependencyManagement\>>>> section)
    
       ** dependency management injection: <<<DependencyManagementInjector>>> ({{{./apidocs/org/apache/maven/model/management/DependencyManagementInjector.html}javadoc}}),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. pom.xml

        <wagonVersion>3.5.3</wagonVersion>
        <woodstoxVersion>6.6.2</woodstoxVersion>
        <xmlunitVersion>2.10.0</xmlunitVersion>
      </properties>
    
      <!--bootstrap-start-comment-->
      <dependencyManagement>
        <!--bootstrap-end-comment-->
        <dependencies>
          <!--  Maven Modules -->
          <!--bootstrap-start-comment-->
          <dependency>
            <groupId>org.apache.maven</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                    expectFiles 'commons-compress-1.5.jar', 'commons-logging-1.2.jar', 'publishTest-1.9.jar', 'spring-core-1.2.9.jar', 'xz-1.6.jar'
                }
                withoutModuleMetadata {
                    // POM <dependencyManagement> elements are not consumed as constraints for packaging == 'jar'.
                    expectFiles 'commons-compress-1.5.jar', 'commons-logging-1.0.4.jar', 'publishTest-1.9.jar', 'spring-core-1.2.9.jar', 'xz-1.2.jar'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenParentPomResolveIntegrationTest.groovy

            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants('child-1.0.jar', 'parent_dep-1.2.jar', 'child_dep-1.7.jar')
        }
    
        @ToBeFixedForConfigurationCache
        def "uses dependencyManagement from parent pom"() {
            given:
            mavenRepo.module("org", "child_dep", "1.7").publish()
            mavenRepo.module("org", "typed_dep", "1.8").artifact(type: 'bar').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

                    }
                    boolean isBom = pomPackaging == 'pom' && !dependencies.isEmpty() && dependencies.findAll { it.optional }.size() == dependencies.size()
    
                    if (isBom) {
                        dependencyManagement {
                            dependencies {
                                dependencies.each { dep ->
                                    dependency {
                                        groupId(dep.groupId)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top