Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Crooks (0.17 sec)

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

        /**
         * Obtain an immutable list of compile source roots for the given project and scope.
         * Paths are absolute.
         *
         * @param project the project
         * @param scope the scope, i.e. usually main or test
         * @return the list of compile source roots
         */
        @Nonnull
        List<Path> getCompileSourceRoots(@Nonnull Project project, @Nonnull ProjectScope scope);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 09 17:13:31 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java

            List<String> roots;
            if (nonNull(scope, "scope") == ProjectScope.MAIN) {
                roots = prj.getCompileSourceRoots();
            } else if (scope == ProjectScope.TEST) {
                roots = prj.getTestCompileSourceRoots();
            } else {
                throw new IllegalArgumentException("Unsupported scope " + scope);
            }
            return roots.stream()
                    .map(Paths::get)
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom

      <modules>
        <module>plexus-action</module>
        <module>plexus-archiver</module>
        <module>plexus-bayesian</module>
        <module>plexus-command</module>
        <module>plexus-compiler</module>
        <module>plexus-drools</module>
        <module>plexus-formica</module>
        <module>plexus-formica-web</module>
        <module>plexus-hibernate</module>
        <module>plexus-i18n</module>
        <module>plexus-interactivity</module>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

         * @since 3.3.0
         */
        ExtensionRealmCache.CacheRecord setupExtensionsRealm(
                MavenProject project, Plugin plugin, RepositorySystemSession session) throws PluginManagerException;
    
        /**
         * Looks up the mojo for the specified mojo execution and populates its parameters from the configuration given by
         * the mojo execution. The mojo/plugin descriptor associated with the mojo execution provides the class realm to
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  5. maven-core/plugin-manager.txt

    - how to incorporate the metadata processor to start with
    - create a hook to programmatically configure the test
    - create a plugin processor
    - directory
    - jar
    - hooks for loading
    
    - I could make an annotation that marked another class as its plugin discoverer, I could just add it to
      the component descriptor and when it's loaded we can add the discoverer, that would be simpler. I could
    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. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

                    }
                }
    
                builder.pluginRepositories(merged.values());
            }
        }
    
        /*
         * TODO: Whether duplicates should be removed looks like an option for the generated merger.
         */
        @Override
        protected void mergeBuildBase_Filters(
                BuildBase.Builder builder,
                BuildBase target,
                BuildBase source,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom

      <modules>
        <module>plexus-action</module>
        <module>plexus-archiver</module>
        <module>plexus-bayesian</module>
        <module>plexus-command</module>
        <module>plexus-compiler</module>
        <module>plexus-drools</module>
        <module>plexus-formica</module>
        <module>plexus-formica-web</module>
        <module>plexus-hibernate</module>
        <module>plexus-i18n</module>
        <module>plexus-interactivity</module>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 1.8K bytes
    - Viewed (0)
  8. maven-core/lifecycle-executor.txt

    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <version>1.0</version</version>
        <executions>
          <execution>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 9.7K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

    import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
    
    /**
     * ExpressionDocumenter
     */
    @Deprecated
    public class ExpressionDocumenter {
    
        private static final String[] EXPRESSION_ROOTS = {"project", "settings", "session", "plugin", "rootless"};
    
        private static final String EXPRESSION_DOCO_ROOTPATH = "META-INF/maven/plugin-expressions/";
    
        private static Map<String, Expression> expressionDocumentation;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

     * all components from this class, and the upfront construction taken care of entirely by the {@link ProjectBuilder}.
     * There is still the issue of having to run the lifecycle in order to find all the compile source roots and resource
     * directories but I hope to take care of this during the Maven 4.0 release (jvz).
     * </p>
     */
    public class MavenProject implements Cloneable {
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
Back to top