- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 239 for experimental (0.05 sec)
-
api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Experimental.java
import java.lang.annotation.RetentionPolicy; /** * This annotation tags types that are part of an experimental API. * Classes or methods annotated with this annotation may be changed / removed without notice. * * @since 4.0.0 */ @Experimental @Documented @Retention(RetentionPolicy.CLASS)
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Dec 10 21:43:27 UTC 2024 - 1.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectScopeRegistry.java
* under the License. */ package org.apache.maven.api.services; import org.apache.maven.api.ProjectScope; import org.apache.maven.api.annotations.Experimental; /** * Manager for {@link ProjectScope}. * * @since 4.0.0 */ @Experimental
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerException.java
* under the License. */ package org.apache.maven.api.services; import java.io.Serial; import org.apache.maven.api.annotations.Experimental; /** * An artifact could not correctly being deployed. * * @since 4.0.0 */ @Experimental public class ArtifactDeployerException extends MavenException { /** * */ @Serial
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionParserException.java
* under the License. */ package org.apache.maven.api.services; import java.io.Serial; import org.apache.maven.api.annotations.Experimental; /** * The Exception class thrown by {@link VersionParser}. * * @since 4.0.0 */ @Experimental public class VersionParserException extends MavenException { @Serial private static final long serialVersionUID = 1504740189114877333L; /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/MavenExecutionException.java
*/ package org.apache.maven.api.cache; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.services.MavenException; /** * Exception thrown when an error occurs during Maven execution. * This exception wraps the original cause of the execution failure. * * @since 4.0.0 */ @Experimental public class MavenExecutionException extends MavenException { /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/LookupException.java
* under the License. */ package org.apache.maven.api.services; import java.io.Serial; import org.apache.maven.api.annotations.Experimental; /** * The Exception class throw by the {@link Lookup} service. * * @since 4.0.0 */ @Experimental public class LookupException extends MavenException { @Serial private static final long serialVersionUID = -6259322450070320286L;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.5K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Tools.java
* under the License. */ package org.apache.maven.api.cli; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Immutable; /** * Represents most common tools supported by CLIng. * * @since 4.0.0 */ @Immutable @Experimental public final class Tools { private Tools() {} public static final String MVN_CMD = "mvn";
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 1.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/BaseRequest.java
package org.apache.maven.api.services; import org.apache.maven.api.ProtoSession; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; import static java.util.Objects.requireNonNull; /** * Base class for requests. * * @since 4.0.0 */ @Experimental abstract class BaseRequest<S extends ProtoSession> implements Request<S> { private final S session;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Version.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.api; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * A version or meta-version of an artifact or a dependency. * A meta-version is a version suffixed with the {@code SNAPSHOT} keyword.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderResult.java
* under the License. */ package org.apache.maven.api.services; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.settings.Settings; /** * * @since 4.0.0 */ @Experimental public interface SettingsBuilderResult extends Result<SettingsBuilderRequest> { /** * Gets the assembled settings. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 1.8K bytes - Viewed (0)