Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for Glasser (0.19 sec)

  1. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

      </properties>
    
      <build>
        <directory>${project.basedir}/target</directory>
        <outputDirectory>${project.build.directory}/classes</outputDirectory>
        <finalName>${project.artifactId}-${project.version}</finalName>
        <testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
        <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         *       then the test dependency will be placed on the Java {@code --patch-module} option instead of the
         *       class-path.</li>
         * </ul>
         */
        CLASSES("--class-path"),
    
        /**
         * The path identified by the Java {@code --module-path} option.
         * Used for compilation, execution and Javadoc among others.
         *
         * <p><b>Context-sensitive interpretation:</b>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  3. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

      <name>Lifecycle</name>
      <description>
        Configuration of custom lifecycle mappings for the plugin, as generally stored in
        {@code META-INF/maven/lifecycle.xml} in a plugin's jar artifact.
      </description>
      <classes>
        <class rootElement="true" xml.tagName="lifecycles" xsd.compositor="sequence">
          <name>LifecycleConfiguration</name>
          <version>1.0.0</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         * or {@link JavaPathType#CLASSES} otherwise. A JAR file without module descriptor but with
         * an "Automatic-Module-Name" manifest attribute is considered modular.
         */
        public JavaPathType getPathType() {
            return descriptors.isEmpty() ? JavaPathType.CLASSES : JavaPathType.MODULES;
        }
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  5. maven-core/pom.xml

        <artifactId>maven</artifactId>
        <version>4.0.0-beta-1-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-core</artifactId>
    
      <name>Maven Core</name>
      <description>Maven Core classes.</description>
    
      <dependencies>
        <!--  Maven -->
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-di</artifactId>
        </dependency>
        <dependency>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                        phase("compile"),
                        phase("process-classes"),
                        phase("generate-test-sources"),
                        phase("process-test-sources"),
                        phase("generate-test-resources"),
                        phase("process-test-resources"),
                        phase("test-compile"),
                        phase("process-test-classes"),
                        phase("test"),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  7. api/maven-api-metadata/src/site/apt/index.apt

     This is the immutable model for Repository Metadata in <<<org.apache.maven.api.metadata>>> package.
    
     The following are generated from this model:
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 11 14:06:34 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultTypeRegistry.java

                            handler.getExtension(),
                            handler.getClassifier(),
                            handler.isIncludesDependencies(),
                            JavaPathType.CLASSES,
                            JavaPathType.MODULES);
                }
                return type;
            });
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                        addToClasspath = false;
                    }
                }
                if (addToClasspath) {
                    addPathElement(JavaPathType.CLASSES, test);
                }
            }
        }
    
        /**
         * Adds a dependency to the result. This method populates the {@link #nodes}, {@link #paths},
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                     * MNG-6300: resolvedArtifacts can be cache result; this ensures reactor files are always up-to-date
                     * During lifecycle the Artifact.getFile() can change from target/classes to the actual jar.
                     * This clearly shows that target/classes should not be abused as artifactFile just for the classpath
                     */
                    File reactorProjectFile = reactorProjects.get(artifact);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 15.6K bytes
    - Viewed (0)
Back to top