Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ME (0.15 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

            List<MojoExecution> me = new ArrayList<>();
            me.add(createMojoExecution("initialize", "default-initialize", INITIALIZE));
            me.add(createMojoExecution("resources", "default-resources", PROCESS_RESOURCES));
            me.add(createMojoExecution("compile", "default-compile", COMPILE));
            me.add(createMojoExecution("testResources", "default-testResources", PROCESS_TEST_RESOURCES));
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/MetadataGraphNode.java

     *
     *
     */
    @Deprecated
    public class MetadataGraphNode {
        /** node payload */
        MavenArtifactMetadata metadata;
    
        /** nodes, incident to this (depend on me) */
        List<MetadataGraphNode> inNodes;
    
        /** nodes, exident to this (I depend on) */
        List<MetadataGraphNode> exNodes;
    
        public MetadataGraphNode() {
            inNodes = new ArrayList<>(4);
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

                // there are only four 9x platforms that we look for
                is9x = (actualOsName.contains("95")
                        || actualOsName.contains("98")
                        || actualOsName.contains("me")
                        // wince isn't really 9x, but crippled enough to
                        // be a muchness. Maven doesnt run on CE, anyway.
                        || actualOsName.contains("ce"));
                isNT = !is9x;
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java

        public static final String FAIL_NEVER = "fail-never";
    
        public static final String MAKE_MODE = "make";
    
        public static final String MAKE_DEPENDENTS_MODE = "make-dependents";
    
        // make projects that depend on me, and projects that I depend on
        public static final String MAKE_BOTH_MODE = "make-both";
    
        private List<String> blackList = new ArrayList<>();
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultEvent.java

        }
    
        @Override
        public Optional<MojoExecution> getMojoExecution() {
            return Optional.ofNullable(delegate.getMojoExecution()).map(me -> new DefaultMojoExecution(session, me));
        }
    
        @Override
        public Optional<Exception> getException() {
            return Optional.ofNullable(delegate.getException());
        }
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestMavenWorkspaceReader.java

    import org.eclipse.aether.repository.WorkspaceRepository;
    
    public class TestMavenWorkspaceReader implements MavenWorkspaceReader {
    
        static final String REPO_LAYOUT = "test";
    
        static final String REPO_URL = "https://test/me";
    
        static final String REPO_ID = "custom";
    
        static final String GROUP_ID = "org.apache.maven";
    
        static final String ARTIFACT_ID = "this.is.a.test";
    
        static final String VERSION = "99.99";
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Feb 05 12:17:09 GMT 2023
    - 2.6K bytes
    - Viewed (0)
Back to top