Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for InputLocation (0.06 sec)

  1. compat/maven-model/src/main/java/org/apache/maven/model/InputLocation.java

            return result;
        } // -- InputLocation merge( InputLocation, InputLocation, boolean )
    
        /**
         * Method merge.
         *
         * @param target
         * @param indices
         * @param source
         * @return InputLocation
         */
        public static InputLocation merge(
                InputLocation target, InputLocation source, java.util.Collection<Integer> indices) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java

         *
         * @return the InputLocation where this POM was imported from, or null if not imported
         */
        public InputLocation getImportedFrom() {
            return importedFrom;
        }
    
        /**
         * Set the location of the POM from which this POM was imported from.
         *
         * @param importedFrom the InputLocation where this POM was imported from, or null if not imported
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

             * <p>
             * This is typically used for error reporting and debugging purposes.
             *
             * @param inputLocation the input location object
             * @return this builder instance
             */
            public Builder inputLocation(Object inputLocation) {
                this.inputLocation = inputLocation;
                return this;
            }
    
            /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Dec 17 15:20:44 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  4. compat/maven-compat/src/test/java/org/apache/maven/project/interpolation/StringSearchModelInterpolatorTest.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.interpolation;
    
    import java.util.Map;
    
    import org.apache.maven.api.model.InputLocation;
    import org.apache.maven.api.model.InputSource;
    import org.apache.maven.api.model.Model;
    import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
    import org.junit.jupiter.api.Test;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PrecedenceCoreExtensionSelector.java

    import java.util.Optional;
    
    import org.apache.maven.api.cli.CoreExtensions;
    import org.apache.maven.api.cli.InvokerRequest;
    import org.apache.maven.api.cli.extensions.CoreExtension;
    import org.apache.maven.api.cli.extensions.InputLocation;
    
    public class PrecedenceCoreExtensionSelector<C extends LookupContext> implements CoreExtensionSelector<C> {
        @Override
        public List<CoreExtension> selectCoreExtensions(LookupInvoker<C> invoker, C context) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 15:32:43 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/StringSearchModelInterpolator.java

                        && !cls.getPackage().getName().startsWith("sun.nio.fs")
                        // org.apache.maven.api.model.InputLocation can be self-referencing
                        && !cls.getName().equals("org.apache.maven.api.model.InputLocation");
            }
    
            private boolean isQualifiedForInterpolation(Field field, Class<?> fieldType) {
                if (!PRIMITIVE_BY_CLASS.containsKey(fieldType)) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

            Map<String, List<InputLocation>> gasLocations = new HashMap<>();
            Map<String, List<InputLocation>> metaVersionLocations = new HashMap<>();
            for (CoreExtension coreExtension : coreExtensions) {
                String ga = coreExtension.getGroupId() + ":" + coreExtension.getArtifactId();
                InputLocation location = coreExtension.getLocation("");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                + DefaultLifecycleRegistry.class.getPackage().getImplementationVersion()
                + ":default-lifecycle-bindings";
    
        public static final InputLocation DEFAULT_LIFECYCLE_INPUT_LOCATION =
                InputLocation.of(InputSource.of(DEFAULT_LIFECYCLE_MODELID, null));
    
        public static final String SCOPE_COMPILE = DependencyScope.COMPILE.id();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  9. impl/maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

    import java.nio.file.StandardCopyOption;
    import java.util.List;
    import java.util.stream.Stream;
    
    import com.google.common.jimfs.Configuration;
    import com.google.common.jimfs.Jimfs;
    import org.apache.maven.api.model.InputLocation;
    import org.apache.maven.api.model.InputSource;
    import org.apache.maven.api.services.ModelSource;
    import org.apache.maven.api.services.Sources;
    import org.apache.maven.artifact.Artifact;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                                parameterConfiguration.value(),
                                attributes,
                                parameterConfiguration.children(),
                                parameterConfiguration.inputLocation());
    
                        children.add(parameterConfiguration);
                    }
                }
            }
            XmlNode finalConfiguration = XmlNode.newInstance("configuration", children);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
Back to top