Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 154 for Implementation (0.15 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

     * {@link #TEST_COMPILE} and {@link #TEST_RUNTIME}, but can be extended by registering a
     * {@code org.apache.maven.api.spi.PathScopeProvider}.
     * <p>
     * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface
     * can be used as keys.
     *
     * @since 4.0.0
     * @see org.apache.maven.api.services.DependencyResolver
     * @see DependencyScope
     */
    @Experimental
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/LifecycleProvider.java

     * leveraged using the {@link org.apache.maven.api.plugin.annotations.Execute}
     * annotation.  If a {@code META-INF/maven/lifecycle.xml} file is packaged
     * in the plugin, Maven will provide a default implementation that will parse
     * the file and return the contained lifecycle definitions.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface LifecycleProvider {
    
        List<Lifecycle> getLifecycles();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenServiceProvider.java

    import org.slf4j.spi.MDCAdapter;
    import org.slf4j.spi.SLF4JServiceProvider;
    
    public class MavenServiceProvider implements SLF4JServiceProvider {
    
        /**
         * Declare the version of the SLF4J API this implementation is compiled against.
         * The value of this field is modified with each major release.
         */
        // to avoid constant folding by the compiler, this field must *not* be final
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/properties/internal/SystemProperties.java

     */
    package org.apache.maven.properties.internal;
    
    import java.util.Properties;
    
    /**
     * @since 3.2.3
     */
    public class SystemProperties {
        /**
         * Thread-safe System.properties copy implementation.
         */
        public static void addSystemProperties(Properties props) {
            props.putAll(getSystemProperties());
        }
    
        /**
         * Returns a copy of {@link System#getProperties()} in a thread-safe manner.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/DefaultModelVersionProcessor.java

    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.util.Properties;
    
    import org.apache.maven.model.building.ModelBuildingRequest;
    
    /**
     * Maven default implementation of the {@link ModelVersionProcessor} to support
     * <a href="https://maven.apache.org/maven-ci-friendly.html">CI Friendly Versions</a>
     */
    @Named
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jan 01 20:08:55 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/AbstractModelBuildingListener.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.building;
    
    /**
     * Provides a skeleton implementation for model building listeners. The methods of this class are empty.
     *
     */
    public class AbstractModelBuildingListener implements ModelBuildingListener {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/transformation/TransformationFailedException.java

     * under the License.
     */
    package org.apache.maven.internal.transformation;
    
    /**
     * Exception that may be thrown by the {@link org.apache.maven.artifact.Artifact#getFile()}
     * implementation.
     */
    public class TransformationFailedException extends RuntimeException {
    
        public TransformationFailedException(Throwable cause) {
            super(cause);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenFailOnSeverityLogger.java

        MavenFailOnSeverityLogger(String name, LogLevelRecorder logLevelRecorder) {
            super(name);
            this.logLevelRecorder = logLevelRecorder;
        }
    
        /**
         * A simple implementation which always logs messages of level WARN
         * according to the format outlined above.
         */
        @Override
        public void warn(String msg) {
            super.warn(msg);
            logLevelRecorder.record(Level.WARN);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestFileWagon.java

    import org.apache.maven.wagon.providers.file.FileWagon;
    import org.apache.maven.wagon.resource.Resource;
    
    /**
     * Wagon used for test cases that annotate some methods. Note that this is not a thread-safe implementation.
     */
    public class TestFileWagon extends FileWagon {
        private TestTransferListener testTransferListener;
        private boolean insideGet;
    
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactDeployer.java

    import org.eclipse.aether.deployment.DeployResult;
    import org.eclipse.aether.deployment.DeploymentException;
    
    import static org.apache.maven.internal.impl.Utils.nonNull;
    
    /**
     * Implementation of {@link ArtifactDeployer} service.
     */
    @Named
    @Singleton
    public class DefaultArtifactDeployer implements ArtifactDeployer {
    
        @Override
        public void deploy(@Nonnull ArtifactDeployerRequest request) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top