Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Clauss (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

     * all components from this class, and the upfront construction taken care of entirely by the {@link ProjectBuilder}.
     * There is still the issue of having to run the lifecycle in order to find all the compile source roots and resource
     * directories but I hope to take care of this during the Maven 4.0 release (jvz).
     * </p>
     */
    public class MavenProject implements Cloneable {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

    import org.codehaus.plexus.interpolation.StringSearchInterpolator;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     */
    @Named
    @Singleton
    public class DefaultModelBuilder implements ModelBuilder {
    
        private static final String RAW = "raw";
        private static final String FILE = "file";
        private static final String IMPORT = "import";
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                    ProjectBuildingException.class,
                    () -> buildPom("unique-repo-id/artifact-repo"),
                    "Non-unique repository ids did not cause validation error");
        }
    
        /* MNG-4193 */
        @Test
        void testValidationErrorUponNonUniquePluginRepositoryId() throws Exception {
            assertThrows(
                    ProjectBuildingException.class,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

    import org.eclipse.aether.resolution.ArtifactResult;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * DefaultProjectBuilder
     */
    @Named
    @Singleton
    public class DefaultProjectBuilder implements ProjectBuilder {
        public static final String BUILDER_PARALLELISM = "maven.projectBuilder.parallelism";
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

    import org.apache.maven.api.services.model.*;
    import org.apache.maven.model.v4.MavenModelVersion;
    import org.apache.maven.model.v4.MavenTransformer;
    
    /**
     */
    @Named
    @Singleton
    public class DefaultModelValidator implements ModelValidator {
    
        public static final List<String> VALID_MODEL_VERSIONS =
                Collections.unmodifiableList(Arrays.asList("4.0.0", "4.1.0"));
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
Back to top