Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 519 for extend (0.18 sec)

  1. maven-core/src/test/resources/projects/base-directory-alignment/subproject/project-which-needs-directory-alignment-child.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
    
      <extend>../project-which-needs-directory-alignment.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>project-which-needs-directory-alignment</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 1011 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment-child.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
    
      <extend>project-which-needs-directory-alignment.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>project-which-needs-directory-alignment.xml</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 1.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/projects/child.xml

    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <model>
    
      <extend>project.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>maven-project-test</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    
      <artifactId>child-artifact</artifactId>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/PropertyContributorExtender.java

        PropertyContributorExtender(Lookup lookup) {
            this.lookup = lookup;
        }
    
        @SuppressWarnings({"rawtypes", "unchecked"})
        @Override
        public void extend(MavenExecutionRequest mavenExecutionRequest) {
            Map<String, PropertyContributor> effectivePropertyContributors = lookup.lookupMap(PropertyContributor.class);
            if (!effectivePropertyContributors.isEmpty()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Feb 20 15:38:09 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/projects/fully-populated-child.xml

    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <model>
      <extend>project.xml</extend>
      <parent>
        <groupId>maven</groupId>
        <artifactId>maven-project-test</artifactId>
        <version>1.0-beta-9</version>
      </parent>
      <modelVersion>3</modelVersion>
      <groupId>maven</groupId>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 4.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/artifact/MavenArtifactProperties.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.impl.resolver.artifact;
    
    /**
     * The keys for Maven specific properties of artifacts. These properties "extend" (or supplement) the Resolver
     * core properties defined in {@link org.eclipse.aether.artifact.ArtifactProperties}.
     *
     * @see org.eclipse.aether.artifact.ArtifactProperties
     * @since 4.0.0
     */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    used to test the individual components in the lifecycle with data that has expected characteristics
    and can be asserted as desired.
    
    You can change/extend these stubs, and tests should not be breaking too much, since most tests
    assert using expected values from the stubs. Normally, when you try to use data from the stubs that
    HTML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Jul 02 16:47:10 GMT 2021
    - 2.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSessionBuilderSupplier.java

     * constructed instance. To create session out of builder, use {@link SessionBuilder#build()}. For proper closing
     * of sessions, use {@link CloseableSession#close()} method on built instance(s).
     * <p>
     * Extend this class and override methods to customize, if needed.
     *
     * @since 4.0.0
     */
    public class MavenSessionBuilderSupplier implements Supplier<SessionBuilder> {
        protected final RepositorySystem repositorySystem;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/projects/child-with-bogus-parent.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <model>
    
      <extend>${basedir}/bogus.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>bogus</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 947 bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/aether/MavenExecutionRequestExtender.java

    import org.apache.maven.execution.MavenExecutionRequest;
    
    /**
     * Strictly internal component able to "extend" {@link MavenExecutionRequest} in some way before it is used to
     * construct resolver session.
     *
     * @since 4.0.0
     */
    interface MavenExecutionRequestExtender {
        void extend(MavenExecutionRequest mavenExecutionRequest);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Jan 19 11:00:28 GMT 2024
    - 1.2K bytes
    - Viewed (0)
Back to top