- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 106 for ModelBuilder (0.17 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/AbstractModelBuildingListener.java
*/ package org.apache.maven.model.building; /** * Provides a skeleton implementation for model building listeners. The methods of this class are empty. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public class AbstractModelBuildingListener implements ModelBuildingListener { @Override public void buildExtensionsAssembled(ModelBuildingEvent event) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 1.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSource2.java
* that the connection to the backing store remains active until request's {@link ModelCache} is discarded or flushed. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface ModelSource2 extends ModelSource { /** * Returns model source identified by a path relative to this model source POM. Implementation <strong>MUST</strong>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 2.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/management/DefaultDependencyManagementInjector.java
import org.apache.maven.model.merge.MavenModelMerger; /** * Handles injection of dependency management into the model. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @SuppressWarnings({"checkstyle:methodname"}) @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultDependencyManagementInjector implements DependencyManagementInjector {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java
* and a class to provide some type safety when working with the otherwise untyped cache. * * @param <T> The type of data associated with the tag. * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") interface ModelCacheTag<T> { /** * Gets the name of the tag. * * @return The name of the tag, must not be {@code null}. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProcessor.java
* (if it did we could add @Priority of 0 to match the priority given to default components.) * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Named("core-default") @Singleton @Typed(ModelProcessor.class) @Deprecated(since = "4.0.0") public class DefaultModelProcessor implements ModelProcessor { @InjectRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 3.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java
/** * A model building request that delegates all methods invocations to another request, meant for easy transformations by * subclassing. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") class FilterModelBuildingRequest implements ModelBuildingRequest { protected ModelBuildingRequest request;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 6.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivator.java
import org.apache.maven.utils.Os; /** * Determines profile activation based on the operating system of the current runtime platform. * * @see ActivationOS * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Named("os") @Singleton @Deprecated(since = "4.0.0") public class OperatingSystemProfileActivator implements ProfileActivator { private static final String REGEX_PREFIX = "regex:";Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 5.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/locator/DefaultModelLocator.java
import javax.inject.Named; import javax.inject.Singleton; import java.io.File; /** * Locates a POM file within a project base directory. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultModelLocator implements ModelLocator { @Override public File locatePom(File projectDirectory) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 1.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java
* {@link org.apache.maven.model.building.ModelBuilder} will add any relevant repositories to the model resolver. In * other words, the model resolver is stateful and should not be reused across multiple model building requests. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface ModelResolver { /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 5.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultUrlNormalizer.java
*/ package org.apache.maven.model.path; import javax.inject.Named; import javax.inject.Singleton; /** * Normalizes a URL. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultUrlNormalizer implements UrlNormalizer { @Override public String normalize(String url) { String result = url;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 2K bytes - Viewed (0)