Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for Chandler (0.25 sec)

  1. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

     */
    @Named
    @Singleton
    public class DefaultExceptionHandler implements ExceptionHandler {
    
        public ExceptionSummary handleException(Throwable exception) {
            return handle("", exception);
        }
    
        private ExceptionSummary handle(String message, Throwable exception) {
            String reference = getReference(exception);
    
            List<ExceptionSummary> children = null;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/api/services/model/LifecycleBindingsInjector.java

    package org.apache.maven.api.services.model;
    
    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Handles injection of plugin executions induced by the lifecycle bindings for a packaging.
     *
     */
    public interface LifecycleBindingsInjector {
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultPluginConfigurationExpander.java

    import org.apache.maven.api.services.ModelProblemCollector;
    import org.apache.maven.api.services.model.PluginConfigurationExpander;
    import org.apache.maven.api.xml.XmlNode;
    
    /**
     * Handles expansion of general build plugin configuration into individual executions.
     *
     */
    @Named
    @Singleton
    public class DefaultPluginConfigurationExpander implements PluginConfigurationExpander {
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultPluginManagementInjector.java

    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    import org.apache.maven.api.services.model.PluginManagementInjector;
    
    /**
     * Handles injection of plugin management into the model.
     *
     */
    @SuppressWarnings({"checkstyle:methodname"})
    @Named
    @Singleton
    public class DefaultPluginManagementInjector implements PluginManagementInjector {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

    import org.apache.maven.api.settings.RepositoryPolicy;
    import org.apache.maven.api.settings.Settings;
    import org.apache.maven.settings.v4.SettingsMerger;
    
    /**
     * Several convenience methods to handle settings
     *
     */
    public final class SettingsUtilsV4 {
    
        private SettingsUtilsV4() {
            // don't allow construction.
        }
    
        /**
         * @param dominant
         * @param recessive
         */
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

     * A {@code PathType} can identify the class-path, the module-path, the patches for a specific module,
     * or another kind of path.
     *
     * <p>One path type is handled in a special way: unlike other options,
     * the paths specified in a {@code --patch-module} Java option is effective only for a specified module.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java

        }
    
        @Override
        public void addHandlers(Map<String, ArtifactHandler> handlers) {
            throw new UnsupportedOperationException("Adding handlers programmatically is not supported anymore");
        }
    
        @Deprecated
        public Set<String> getHandlerTypes() {
            throw new UnsupportedOperationException("Querying handlers programmatically is not supported anymore");
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-lifecycle-and-artifactHandler/1/test-lifecycle-and-artifactHandler-1.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: jdcasey Build-Jdk: 1.5.0_07 META-INF/plexus/components.xml org.apache.maven.artifact.handler.ArtifactHandler test org.apache.maven.artifact.handler.DefaultArtifactHandl test jar java true org.apache.maven.lifecycle.mapping.LifecycleMapping test org.apache.maven.lifecycle.mapping.DefaultLifecycleMapp default org.apache.maven.plugins:maven-install-plugin:install org.apache.maven.plugi...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 2.5K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.handler;
    
    /**
     * An artifact handler contains information explaining how an artifact plugs into the Maven build:<ul>
     * <li>Information needed to find the artifact file in a repository including extension and classifier</li>
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/core/test/test-extension/1/test-extension-1.jar

     package org.apache.maven.core.test; public synchronized class MyArtifactFactory implements org.apache.maven.artifact.factory.ArtifactFactory { private static final boolean OPTIONAL = 0; private static final org.apache.maven.artifact.handler.ArtifactHandler HANDLER; private static final String CLASSIFIER; private static final String TYPE = jar; private static final String SCOPE = compile; private static final org.apache.maven.artifact.versioning.VersionRange VERSION; private static final String AID...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 4.1K bytes
    - Viewed (0)
Back to top