Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for toml (0.17 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         *
         * @param option the Java tools option for this path, or {@code null} if none
         */
        JavaPathType(String option) {
            this.option = option;
        }
    
        @Override
        public String id() {
            return name();
        }
    
        /**
         * Returns the name of the tool option for this path. For example, if this path type
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/toolchain/java/JavaToolchainImpl.java

            if (Files.isDirectory(bin)) {
                if (Os.IS_WINDOWS) {
                    Path tool = bin.resolve(toolName + ".exe");
                    if (Files.exists(tool)) {
                        return tool;
                    }
                }
                Path tool = bin.resolve(toolName);
                if (Files.exists(tool)) {
                    return tool;
                }
            }
            return null;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 06:01:36 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/toolchain/Toolchain.java

         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name.
         * @return file representing the tool executable, or null if the tool can not be found
         */
        String findTool(String toolName);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

         * The returned list may contain a mix of Java class-path, Java module-path, and other types of path elements.
         *
         * @return the paths of all dependencies
         */
        @Nonnull
        List<Path> getPaths();
    
        /**
         * Returns the file paths of all dependencies, dispatched according the tool options where to place them.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  5. apache-maven/README.txt

                              Apache Maven
    
      What is it?
      -----------
    
      Maven is a software project management and comprehension tool. Based on
      the concept of a Project Object Model (POM), Maven can manage a project's
      build, reporting and documentation from a central piece of information.
    
      Documentation
      -------------
    
      The most up-to-date documentation can be found at https://maven.apache.org/.
    
      Release Notes
      -------------
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 13 20:21:20 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom

        <developer>
          <id>neildunn</id>
          <name>Neil Dunn</name>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
        <developer>
          <id>scarytom</id>
          <name>Tom Denley</name>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
      </developers>
    
      <modules>
        <module>hamcrest-core</module>
        <module>hamcrest-generator</module>
    Plain Text
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

        /**
         * The ordered list of the flattened dependency nodes.
         */
        private final List<Node> nodes;
    
        /**
         * The file paths of all dependencies, regardless on which Java tool option those paths should be placed.
         */
        private final List<Path> paths;
    
        /**
         * The file paths of all dependencies, dispatched according the Java options where to place them.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

            */
        }
    
        @Test
        void testMojoConfigurationIsMergedCorrectly() throws Exception {}
    
        /**
         * The case where the user wants to specify an alternate version of the underlying tool. Common case
         * is in the Antlr plugin which comes bundled with a version of Antlr but the user often times needs
         * to use a specific version. We need to make sure the version that they specify takes precedence.
         */
    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)
  9. maven-core/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

      <groupId>org.apache.maven</groupId>
      <artifactId>maven</artifactId>
      <packaging>pom</packaging>
      <name>Maven</name>
      <version>2.0</version>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Oct 27 10:08:56 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

      <artifactId>maven-parent</artifactId>
      <version>4</version>
      <packaging>pom</packaging>
      <name>Apache Maven</name>
      <description>
        Maven is a software project management and comprehension tool. Based on the concept of a project object model
        (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
      </description>
      <url>http://maven.apache.org/</url>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 9.8K bytes
    - Viewed (0)
Back to top