Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for modifiers (0.16 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolver.java

                @Nonnull Session session, @Nonnull Parent parent, @Nonnull AtomicReference<Parent> modified)
                throws ModelResolverException {
            return resolveModel(
                    session,
                    parent.getGroupId(),
                    parent.getArtifactId(),
                    parent.getVersion(),
                    version -> modified.set(parent.withVersion(version)));
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/java/org/apache/maven/internal/impl/resolver/DefaultModelResolverTest.java

                    .version("(,2.0)")
                    .build();
    
            AtomicReference<org.apache.maven.api.model.Parent> modified = new AtomicReference<>();
            assertNotNull(this.newModelResolver().resolveModel(session, parent, modified));
            assertEquals("1", modified.get().getVersion());
        }
    
        @Test
        void testResolveDependencyThrowsModelResolverExceptionWhenNotFound() throws Exception {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

        <url>http://jira.codehaus.org/browse/MNG</url>
      </issueManagement>
      <ciManagement>
        <system>continuum</system>
        <notifiers>
          <notifier>
            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <mailingLists>
        <mailingList>
          <name>Maven User List</name>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  4. README.md

    ## IMPORTANT WARNINGS
    
    1.  APIs marked with the `@Beta` annotation at the class or method level are
        subject to change. They can be modified in any way, or even removed, at any
        time. If your code is a library itself (i.e., it is used on the CLASSPATH of
        users outside your own control), you should not use beta APIs unless you
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
Back to top