Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 259 for _super (0.14 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderException.java

        /**
         * @param message the message for the exception
         * @param e the exception itself
         */
        public XmlReaderException(String message, Location location, Exception e) {
            super(message, e);
            this.location = location;
        }
    
        public Location getLocation() {
            return location;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorParsingException.java

    import org.apache.maven.model.Plugin;
    
    /**
     */
    public class PluginDescriptorParsingException extends Exception {
    
        public PluginDescriptorParsingException(Plugin plugin, String descriptorLocation, Throwable e) {
            super(createMessage(plugin, descriptorLocation, e), e);
        }
    
        private static String createMessage(Plugin plugin, String descriptorLocation, Throwable e) {
            String message = "Failed to parse plugin descriptor";
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadataRetrievalException.java

            this(message, cause, null);
        }
    
        public ArtifactMetadataRetrievalException(String message, Throwable cause, Artifact artifact) {
            super(message, cause);
            this.artifact = artifact;
        }
    
        public Artifact getArtifact() {
            return artifact;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMetadataSource.java

                ProjectBuilder projectBuilder,
                MavenMetadataCache cache,
                LegacySupport legacySupport,
                MavenRepositorySystem mavenRepositorySystem) {
            super(repositoryMetadataManager, artifactFactory, projectBuilder, cache, legacySupport, mavenRepositorySystem);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DuplicateArtifactAttachmentException.java

        private Artifact artifact;
    
        private final MavenProject project;
    
        public DuplicateArtifactAttachmentException(MavenProject project, Artifact artifact) {
            super(constructMessage(project, artifact));
            this.project = project;
            this.artifact = artifact;
        }
    
        private static String constructMessage(MavenProject project, Artifact artifact) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/providers/SiteLifecycleProvider.java

            "site-deploy", "org.apache.maven.plugins:maven-site-plugin:" + MAVEN_SITE_PLUGIN_VERSION + ":deploy"
        };
        // END SNIPPET: site
    
        @Inject
        public SiteLifecycleProvider() {
            super(LIFECYCLE_ID, PHASES, BINDINGS);
        }
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Jan 16 13:30:48 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/ProjectBuildingResultWithProblemMessageMatcher.java

        }
    
        @Override
        public void describeMismatch(final Object o, final Description description) {
            if (!(o instanceof ProjectBuildingResult)) {
                super.describeMismatch(o, description);
            } else {
                final ProjectBuildingResult r = (ProjectBuildingResult) o;
                description.appendText("was a ProjectBuildingResult with messages ");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.7K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java

                @SuppressWarnings("checkstyle:ParameterNumber")
                DefaultVersionResolverRequest(@Nonnull Session session, @Nonnull ArtifactCoordinate artifactCoordinate) {
                    super(session);
                    this.artifactCoordinate = artifactCoordinate;
                }
    
                @Nonnull
                @Override
                public ArtifactCoordinate getArtifactCoordinate() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverRequest.java

                @SuppressWarnings("checkstyle:ParameterNumber")
                DefaultVersionResolverRequest(@Nonnull Session session, @Nonnull ArtifactCoordinate artifactCoordinate) {
                    super(session);
                    this.artifactCoordinate = artifactCoordinate;
                }
    
                @Nonnull
                @Override
                public ArtifactCoordinate getArtifactCoordinate() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionPlanItem.java

            return mojoDescriptor.getPluginDescriptor().getPlugin();
        }
    
        @Override
        public String toString() {
            return "ExecutionPlanItem{" + ", mojoExecution=" + mojoExecution + '}' + super.toString();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.5K bytes
    - Viewed (0)
Back to top