- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 109 for node_builder (0.07 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ArtifactModelSource.java
import java.util.Objects; import org.apache.maven.building.FileSource; /** * Represents a model pulled from a repository * * @since 4.0.0 * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public class ArtifactModelSource extends FileSource implements ModelSource { private final String groupId; private final String artifactId;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 2.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FileModelSource.java
import java.nio.file.Files; import java.nio.file.Path; import org.apache.maven.building.FileSource; /** * Wraps an ordinary {@link File} as a model source. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public class FileModelSource extends FileSource implements ModelSource2 { /** * Creates a new model source backed by the specified file. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Apr 14 13:42:17 UTC 2025 - 2.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/normalization/ModelNormalizer.java
* representation for models that physically look different but are semantically equivalent. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface ModelNormalizer { /** * Merges duplicate elements like multiple declarations of the same build plugin in the specified model. *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/superpom/DefaultSuperPomProvider.java
import org.apache.maven.model.Model; import org.apache.maven.model.building.ModelProcessor; /** * Provides the super POM that all models implicitly inherit from. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultSuperPomProvider implements SuperPomProvider { /** * The cached super POM, lazily created. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/ProfileActivationFilePathInterpolator.java
/** * Finds an absolute path for {@link ActivationFile#getExists()} or {@link ActivationFile#getMissing()} * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Named @Singleton @Deprecated public class ProfileActivationFilePathInterpolator { @Inject private PathTranslator pathTranslator; @InjectRegistered: 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/profile/activation/PropertyProfileActivator.java
/** * Determines profile activation based on the existence or value of some execution property. * * @see ActivationProperty * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Named("property") @Singleton @Deprecated(since = "4.0.0") public class PropertyProfileActivator implements ProfileActivator { @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java
* identity of a model. The tag allows for further classification of the associated data on the sole discretion of the * model builder. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface ModelCache { /** * Puts the specified data into the cache. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 2.6K 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/Graph.java
import java.util.HashSet; import java.util.LinkedHashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Set; /** * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") class Graph { final Map<String, Set<String>> graph = new LinkedHashMap<>(); synchronized void addEdge(String from, String to) throws CycleDetectedException {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.4K bytes - Viewed (0)