Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Mitake (0.17 sec)

  1. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

            // TODO turn an equivalent back on when the RR plugin is released.
    
            /*
    
            This will not work until the RR plugin is released to get rid of the binding to the reporting exception which is a mistake.
    
            This happens after removing the reporting API from the core:
    
            java.lang.NoClassDefFoundError: org/apache/maven/reporting/MavenReportException
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  2. maven-core/src/main/resources/META-INF/maven/extension.xml

        <!--
          | We may potentially want to export these, but right now I'm not sure that anything Guice specific needs
          | to be made available to plugin authors. If we find people are getting fancy and want to take advantage of
          | Guice specifics we can expose that later. Really some testing needs to be done to see full hiding
          | of Guice has any impact on what we may categorize as a standard JSR-330 based Tesla/Maven plugin.
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

            for (ExecutionPlanItem executionPlanItem : mavenExecutionPlan) {
                result.add(executionPlanItem.getMojoExecution());
            }
            return result;
        }
    
        // We need to take in multiple lifecycles
        public void testCalculationOfBuildPlanTasksOfTheCleanLifecycleAndTheInstallLifecycle() throws Exception {
            File pom = getProject("project-with-additional-lifecycle-elements");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                List<ArtifactRepository> remoteRepositories,
                ArtifactRepository localRepository)
                throws RepositoryMetadataStoreException {
            // TODO currently this is first wins, but really we should take the latest by comparing either the
            // snapshot timestamp, or some other timestamp later encoded into the metadata.
            // TODO this needs to be repeated here so the merging doesn't interfere with the written metadata
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  5. maven-core/plugin-manager.txt

    * Along with this comes the testing strategies that make this work
    * The repository model where plugins can be stored and cataloged
    * Bridging this into an OSGi system: if this could be done then we can basically take over p2
    
    TODO
    
    - dealing with processing of input and adapting GAVs before searching i.e. plugin groups in Maven and default searching
    - how to deal with resolution from different places like local/remote/workspace
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

         * even as an external parent), the POM will be parsed in a lenient way.  Local POMs
         * are parsed more strictly.
         */
        boolean isProjectBuild();
    
        /**
         * Specifies whether plugin processing should take place for the built model.
         * This involves merging plugins specified by the {@link org.apache.maven.api.Packaging},
         * configuration expansion (merging configuration defined globally for a given plugin
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

         * We want to make sure that what is ask for in the execution request overrides what is in the settings.
         * The CLI feeds into an execution request so if a particular value is present in the execution request
         * then we will take that over the value coming from the user settings.
         */
        private static Settings adaptSettings(MavenExecutionRequest request) {
            File localRepo = request.getLocalRepositoryPath();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                        sha1ChecksumObserver = addChecksumObserver(wagon, CHECKSUM_ALGORITHMS[i++]);
    
                        // reset the retry flag.
                        retry = false;
    
                        // This should take care of creating destination directory now on
                        if (destination.exists() && !force) {
                            try {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 29.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                            }
                        }
                    }
                }
            }
        }
    
        // org.apache.maven.plugins:maven-remote-resources-plugin:1.0:process
        // TODO take repo mans into account as one may be aggregating prefixes of many
        // TODO collect at the root of the repository, read the one at the root, and fetch remote if something is missing
        // or the user forces the issue
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  10. api/maven-api-settings/src/main/mdo/settings.mdo

              </association>
            </field>
            <field>
              <name>properties</name>
              <description>
                Extended configuration specific to this profile goes here.
                Contents take the form of {@code &lt;property.name&gt;property.value&lt;/property.name&gt;}
              </description>
              <type>Properties</type>
              <association xml.mapStyle="inline">
                <type>String</type>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
Back to top