Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for systemz (0.41 sec)

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

                        && a.getArtifactId().equals("tools")) {
                    // The system scoped dependencies will be present in the classloader for the plugin
                    return;
                }
            }
    
            fail("Can't find the system scoped dependency in the plugin artifacts.");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

            <url>https://github.com/junit-team/junit4</url>
          <tag>r4.13.1</tag>
      </scm>
        <issueManagement>
            <system>github</system>
            <url>https://github.com/junit-team/junit4/issues</url>
        </issueManagement>
        <ciManagement>
            <system>travis</system>
            <url>https://travis-ci.org/junit-team/junit4</url>
        </ciManagement>
        <distributionManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. maven-model-builder/src/site/apt/index.apt

    *----+------+------+
    | <<<*>>> | Java system properties (see {{{https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#getProperties()}JDK reference}}) | <<<$\{user.home\}>>>\
     | | <<<$\{java.home\}>>> |
    *----+------+------+
    | <<<*>>> | User properties | <<<$\{foo\}>>> |
    *----+------+------+
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

            if (stereotype == null) {
                stereotype = new DefaultArtifactType(dependency.getType());
            }
    
            boolean system =
                    dependency.getSystemPath() != null && dependency.getSystemPath().length() > 0;
    
            Map<String, String> props = null;
            if (system) {
                props = Collections.singletonMap(MavenArtifactProperties.LOCAL_PATH, dependency.getSystemPath());
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java

    @Named(SettingsXmlConfigurationProcessor.HINT)
    @Singleton
    public class SettingsXmlConfigurationProcessor implements ConfigurationProcessor {
        public static final String HINT = "settings";
    
        public static final String USER_HOME = System.getProperty("user.home");
    
        public static final File USER_MAVEN_CONFIGURATION_HOME = new File(USER_HOME, ".m2");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

                }
                try {
                    Collections.sort(versions);
                } catch (Exception e) {
                    e.printStackTrace(System.err);
                    System.err.println("The UUIDs used");
                    System.err.println(versions.stream().map(Version::toString).collect(Collectors.joining("\n")));
                    fail("unexpected exception");
                }
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                if (child != null) {
                    children.add(child);
                }
            }
    
            if (children.isEmpty()) {
                return null;
            }
    
            String message = System.lineSeparator()
                    + "The project " + (result.getProjectId().isEmpty() ? "" : result.getProjectId() + " ")
                    + "(" + result.getPomFile() + ") has "
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

     * <tr><td><code>*</code></td>                 <td></td>               <td>user properties</td></tr>
     * <tr><td><code>*</code></td>                 <td></td>               <td>system properties</td></tr>
     * <tr><td><code>*</code></td>                 <td></td>               <td>project properties</td></tr>
     * </table>
     *
     * @see Session
     * @see Project
     * @see org.apache.maven.api.settings.Settings
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/RepositorySystemSupplier.java

     * thrown away immediately once repository system was created and there is no need for more instances. If new
     * repository system instance needed, new instance of this class must be created. For proper shut down of returned
     * repository system instance(s) use {@link RepositorySystem#shutdown()} method on supplied instance(s).
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java

     * thrown away immediately once repository system was created and there is no need for more instances. If new
     * repository system instance needed, new instance of this class must be created. For proper shut down of returned
     * repository system instance(s) use {@link RepositorySystem#shutdown()} method on supplied instance(s).
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 45.5K bytes
    - Viewed (0)
Back to top