Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for promise (0.2 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

            }
        }
    
        private org.apache.maven.settings.Proxy getProxy(
                ArtifactRepository repository, List<org.apache.maven.settings.Proxy> proxies) {
            if (proxies != null && repository.getProtocol() != null) {
                for (org.apache.maven.settings.Proxy proxy : proxies) {
                    if (proxy.isActive() && repository.getProtocol().equalsIgnoreCase(proxy.getProtocol())) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

                  </archive>
                </configuration>
              </plugin>
            </plugins>
          </build>
        </profile>
        <profile>
          <id>release</id>
          <build>
            <plugins>
              <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <inherited>false</inherited>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Sep 11 08:52:20 GMT 2021
    - 22.4K bytes
    - Viewed (0)
  3. maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

                  </archive>
                </configuration>
              </plugin>
            </plugins>
          </build>
        </profile>
        <profile>
          <id>release</id>
          <build>
            <plugins>
              <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <inherited>false</inherited>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  4. LICENSE

              that such additional attribution notices cannot be construed
              as modifying the License.
    
          You may add Your own copyright statement to Your modifications and
          may provide additional or different license terms and conditions
          for use, reproduction, or distribution of Your modifications, or
          for any such Derivative Works as a whole, provided Your use,
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 11 20:39:30 GMT 2013
    - 11.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *     <li>User properties (highest precedence)</li>
         * </ul>
         * Note: Project properties contains properties injected from profiles, if applicable. Their precedence is
         * {@code profile > project}, hence active profile property may override project property.
         * <p>
         * The caller of this method should decide whether there is a project in scope (hence, a project instance
         * needs to be passed) or not.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

            return problems;
        }
    
        @Override
        public Profile convert(org.apache.maven.api.model.Profile profile) {
            return SettingsUtilsV4.convertToSettingsProfile(profile);
        }
    
        @Override
        public org.apache.maven.api.model.Profile convert(Profile profile) {
            return SettingsUtilsV4.convertFromSettingsProfile(profile);
        }
    
        /**
         * Collects the output of the settings builder.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 12K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.artifact.repository.RepositoryCache;
    import org.apache.maven.internal.impl.SettingsUtilsV4;
    import org.apache.maven.model.Profile;
    import org.apache.maven.monitor.event.EventDispatcher;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectBuildingRequest;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

         */
        @Nonnull
        Collection<Profile> getProfiles();
    
        /**
         * List of profile ids that have been explicitly activated by the user.
         */
        @Nonnull
        List<String> getActiveProfileIds();
    
        /**
         * List of profile ids that have been explicitly deactivated by the user.
         */
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                throws ModelBuilderException {
            ProfileSelector customSelector = new DefaultProfileSelector() {
                @Override
                public List<Profile> getActiveProfiles(
                        Collection<Profile> profiles, ProfileActivationContext context, ModelProblemCollector problems) {
                    return new ArrayList<>();
                }
            };
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

                            .createRemote("central", "https://repo.maven.apache.org/maven2")),
                    null,
                    lookup);
    
            Profile profile = session.getService(SettingsBuilder.class)
                    .convert(org.apache.maven.api.settings.Profile.newBuilder()
                            .repositories(settings.getRepositories())
                            .pluginRepositories(settings.getPluginRepositories())
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 17.1K bytes
    - Viewed (0)
Back to top