Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 75 for DependencyManagement (0.06 seconds)

  1. impl/maven-core/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

      <dependencies>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.13.1</version>
          <scope>test</scope>
        </dependency>
      </dependencies>
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-container-default</artifactId>
            <version>1.0-alpha-8</version>
          </dependency>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 8.6K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

    import org.apache.maven.model.Activation;
    import org.apache.maven.model.Build;
    import org.apache.maven.model.BuildBase;
    import org.apache.maven.model.Dependency;
    import org.apache.maven.model.DependencyManagement;
    import org.apache.maven.model.DistributionManagement;
    import org.apache.maven.model.Exclusion;
    import org.apache.maven.model.InputLocation;
    import org.apache.maven.model.InputLocationTracker;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 03 15:06:05 GMT 2025
    - 66.8K bytes
    - Click Count (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>
      <build>
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Dec 05 03:10:05 GMT 2025
    - 26.4K bytes
    - Click Count (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>
      <build>
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Dec 05 03:10:05 GMT 2025
    - 26.1K bytes
    - Click Count (0)
  5. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Verifies the version of a dependency listed in a parent's
     * dependencyManagement section is chosen over another version of the same
     * dependency, listed transitively.
     *
     */
    @Deprecated
    @SuppressWarnings("checkstyle:UnusedLocalVariable")
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  6. compat/maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java

            // For some reason with the introduction of MNG-1577 we have the case in Yoko where a depMan section has
            // something like the following:
            //
            // <dependencyManagement>
            //     <dependencies>
            //         <!--  Yoko modules -->
            //         <dependency>
            //             <groupId>org.apache.yoko</groupId>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 6.9K bytes
    - Click Count (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategy.java

                    })
                    .count();
            fixed |= fixedCombineSelfCount > 0;
    
            return fixed;
        }
    
        /**
         * Fixes duplicate dependencies in dependencies and dependencyManagement sections.
         */
        private boolean fixDuplicateDependencies(Document pomDocument, UpgradeContext context) {
            Element root = pomDocument.root();
    
            // Collect all dependency containers to process
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 22.2K bytes
    - Click Count (0)
  8. impl/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>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 22.4K bytes
    - Click Count (0)
  9. impl/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>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 22.4K bytes
    - Click Count (0)
  10. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

                ModelBase target, ModelBase source, boolean sourceDominant, Map<Object, Object> context) {
            DependencyManagement src = source.getDependencyManagement();
            if (src != null) {
                DependencyManagement tgt = target.getDependencyManagement();
                if (tgt == null) {
                    tgt = new DependencyManagement();
                    target.setDependencyManagement(tgt);
                }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Apr 03 11:21:39 GMT 2025
    - 99.2K bytes
    - Click Count (0)
Back to Top