Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 205 for Shere (0.17 sec)

  1. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      That should be all there is to it.
    
    * MojoDescriptor
    
      Remove set/getMojoConfiguration(..), as it will become obsolete.
    
    * MavenSession
    
      We may need to enable the context injection here, since this will be
      instantiated per-project. If we always inject the same context parameters,
      and are careful to inject nulls where things are missing, we should be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                    goal = tok[1];
                } else {
                    // goal was missing - pass through to MojoNotFoundException
                    goal = "";
                }
    
                // This is the case where someone has executed a single goal from the command line
                // of the form:
                //
                // mvn remote-resources:process
                //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         *
         * <h4>Context-sensitive interpretation</h4>
         * A dependency with this path type will not necessarily be placed on the class-path.
         * There are two circumstances where the dependency may nevertheless be placed somewhere else:
         *
         * <ul>
         *   <li>If {@link #MODULES} path type is also set, then the dependency can be placed either on the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

         *   were fine, but they are still before one which reported errors.
         * <p>Then the returned value is {@code groupId:artifactId} when there is a name clash and
         * {@code :artifactId} if there is no conflict.
         * This method is made package-private for testing purposes.
         *
         * @param mavenProjects Maven projects which are part of build execution.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

            boolean isWindows = actualOsName.contains(FAMILY_WINDOWS);
            boolean is9x = false;
            boolean isNT = false;
            if (isWindows) {
                // there are only four 9x platforms that we look for
                is9x = (actualOsName.contains("95")
                        || actualOsName.contains("98")
                        || actualOsName.contains("me")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

        /**
         * Merges one DOM into another, given a specific algorithm and possible override points for that algorithm.<p>
         * The algorithm is as follows:
         * <ol>
         * <li> if the recessive DOM is null, there is nothing to do... return.</li>
         * <li> Determine whether the dominant node will suppress the recessive one (flag=mergeSelf).
         *   <ol type="A">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        /**
         * The case where you have a plugin in the current build that you want to be used on projects in
         * the current build.
         */
        @Test
        void testMojoThatIsPresentInTheCurrentBuild() throws Exception {}
    
        /**
         * This is the case where the Mojo wants to execute on every project and then do something at the end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/MultipleArtifactsNotFoundException.java

        /**
         * @param originatingArtifact the artifact that was being resolved
         * @param missingArtifacts    artifacts that could not be resolved
         * @param remoteRepositories  remote repositories where the missing artifacts were not found
         * @deprecated use {@link #MultipleArtifactsNotFoundException(Artifact, List, List, List)}
         */
        @Deprecated
        public MultipleArtifactsNotFoundException(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         * This map is usually either empty if no module was found, or a singleton map.
         * It may however contain more than one entry if module hierarchy was detected,
         * in which case there is one key per sub-directory.
         *
         * <p>This map may contain null values if the constructor was invoked with {@code resolve}
         * parameter set to false. This is more efficient when only the module existence needs to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/maven/lib/ext/hazelcast/README.txt

    This directory is intended to contain Hazelcast [1] JARs for Maven Resolver Named Locks using Hazelcast.
    
    See here [2] on how to add necessary JARs.
    
    [1] https://github.com/hazelcast/hazelcast
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Aug 23 19:41:57 UTC 2022
    - 300 bytes
    - Viewed (0)
Back to top