Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            Artifact managedVersion = createArtifactSpec("b", "5.0").artifact;
            Artifact modifiedB = createArtifactSpec("b", "5.0", Artifact.SCOPE_RUNTIME).artifact;
    
            ArtifactResolutionResult res = collect(a, managedVersion);
            assertEquals(createSet(new Object[] {a.artifact, modifiedB}), res.getArtifacts(), "Check artifact list");
        }
    
        @Test
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            try {
                AtomicReference<Parent> modified = new AtomicReference<>();
                Session session = request.getSession()
                        .withRemoteRepositories(request.getModelRepositoryHolder().getRepositories());
                modelSource = modelResolver.resolveModel(session, parent, modified);
                if (modified.get() != null) {
                    parent = modified.get();
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

                URL for the continuous integration system used by the project if it has a web interface.
              </description>
              <type>String</type>
            </field>
            <field>
              <name>notifiers</name>
              <version>4.0.0+</version>
              <description>Configuration for notifying developers/users when a build is unsuccessful,
                including user information and notification mode.</description>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  4. 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)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                }
            }
    
            @Override
            public ModelSource resolveModel(Session session, Parent parent, AtomicReference<Parent> modified)
                    throws ModelResolverException {
                try {
                    org.apache.maven.model.Parent p = new org.apache.maven.model.Parent(parent);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

                        protected boolean exec() {
                            try {
                                AtomicReference<Parent> modified = new AtomicReference<>();
                                ModelSource source = doResolveModel(parent, modified);
                                result = new Result(source, modified.get(), null);
                            } catch (Exception e) {
                                result = new Result(null, null, e);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
Back to top