Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Mooring (0.18 sec)

  1. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

            Map<String, Integer> validPluginCounts = new HashMap<>();
    
            String testPluginArtifactId = "maven-compiler-plugin";
    
            // this is the plugin we're looking for.
            validPluginCounts.put(testPluginArtifactId, 0);
    
            // these are injected if -DperformRelease=true
            validPluginCounts.put("maven-deploy-plugin", 0);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/ProjectClasspathTestType.java

            assertEquals(scopeValue, artifact.getScope(), "Check scope");
        }
    
        private Artifact getArtifact(MavenProject project, String groupId, String artifactId) {
            System.out.println("[ Looking for " + groupId + ":" + artifactId + " ]");
            for (Artifact a : project.getArtifacts()) {
                System.out.println(a.toString());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  3. api/maven-api-settings/src/main/mdo/settings.mdo

            </field>
            <field>
              <name>layout</name>
              <version>1.0.0+</version>
              <description>
                The type of layout this repository uses for locating and
                storing artifacts - can be "legacy" or "default".
              </description>
              <type>String</type>
              <defaultValue>default</defaultValue>
            </field>
          </fields>
          <codeSegments>
    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)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

     * <p>
     * Unlike a cache, this session data is not subject to purging. For this same reason, session data should also not be
     * abused as a cache (i.e. for storing values that can be re-calculated) to avoid memory exhaustion.
     * <p>
     * <strong>Note:</strong> Actual implementations must be thread-safe.
     *
     * @see Session#getData()
     * @since 4.0.0
     */
    @Experimental
    @ThreadSafe
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field>
              <name>layout</name>
              <version>4.0.0+</version>
              <description>
                The type of layout this repository uses for locating and storing artifacts -
                can be {@code legacy} or {@code default}.
              </description>
              <type>String</type>
              <defaultValue>default</defaultValue>
            </field>
          </fields>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

        // from the plugin.xml inside a plugin.
        //
    
        @Override
        public Set<Plugin> getPluginsBoundByDefaultToAllLifecycles(String packaging) {
            if (logger.isDebugEnabled()) {
                logger.debug("Looking up lifecycle mappings for packaging " + packaging + " from "
                        + Thread.currentThread().getContextClassLoader());
            }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

        //
        // 3) Create RepositorySystemSession.
        //
        // 4) Create MavenSession.
        //
        // 5) Execute AbstractLifecycleParticipant.afterSessionStart(session)
        //
        // 6) Get reactor projects looking for general POM errors
        //
        // 7) Create ProjectDependencyGraph using trimming which takes into account --projects and reactor mode.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
Back to top