Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for Case (0.12 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        // ----------------------------------------------------------------------
        //
        // ----------------------------------------------------------------------
    
        // Base directory
    
        /**
         * @deprecated use {@link #setTopDirectory(Path)} instead
         */
        @Deprecated
        MavenExecutionRequest setBaseDirectory(File basedir);
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

        }
    
        /**
         * This is used for pom-less execution like running archetype:generate. I am taking out the profile handling and the
         * interpolation of the base directory until we spec this out properly.
         */
        public MavenProject buildStandaloneSuperProject(ProjectBuilderConfiguration configuration)
                throws ProjectBuildingException {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

    import java.util.List;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.artifact.repository.ArtifactRepositoryPolicy;
    
    /**
     * Base class for artifact resolution exceptions.
     *
     */
    public class AbstractArtifactResolutionException extends Exception {
        private String groupId;
    
        private String artifactId;
    
        private String version;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.1K bytes
    - Viewed (0)
Back to top