Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 842 for projects (0.29 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProjectHelper.java

        /**
         * Add a resource directory to the project.
         * @param project project reference.
         * @param resourceDirectory directory.
         * @param includes include patterns.
         * @param excludes exclude patterns.
         */
        void addResource(MavenProject project, String resourceDirectory, List<String> includes, List<String> excludes);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java

            activeProjectSelectors.forEach(this::activateOptionalProject);
        }
    
        /**
         * Overwrites the inactive projects based on a pre-Maven 4 "inactive projects" list.
         * @param inactiveProjectSelectors A {@link List} of project selectors that must be deactivated.
         * @deprecated Use {@link #deactivateOptionalProject(String)} or {@link #deactivateRequiredProject(String)} instead.
         */
        @Deprecated
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 16.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        project.getGroupId(), project.getArtifactId(), project.getVersion(), null, project.getPackaging());
                project.setArtifact(projectArtifact);
    
                // only set those on 2nd phase, ignore on 1st pass
                if (project.getFile() != null) {
                    Build build = project.getBuild().getDelegate();
                    project.addScriptSourceRoot(build.getScriptSourceDirectory());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

         * We should always check whether the request pom project is collected.
         * The integration tests for MNG-6223 are examples for this scenario.
         *
         * @return true if the collected projects contain the requested project (for example with -f)
         */
        private boolean isRequestedProjectCollected(MavenExecutionRequest request, List<MavenProject> projects) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 9.1K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*    *##end
    #*    *###
    #*    *### fix project urls that are wrong in pom
    #*    *##if ( $project.url.startsWith( "http://www.eclipse.org/sisu/" ) )
    #*      *##set ( $project.url = 'https://www.eclipse.org/sisu/' )
    #*    *##elseif ( $project.url.startsWith( "https://github.com/google/guava/" ) )
    #*      *##set ( $project.url = 'https://github.com/google/guava/' )
    #*    *##elseif ( $project.url.startsWith( "https://github.com/google/guice/" ) )
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Sep 13 20:57:31 GMT 2021
    - 3.7K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/plugin/internal/MavenPluginValidatorTest.java

     */
    class MavenPluginValidatorTest extends AbstractCoreMavenComponentTestCase {
        @Inject
        private MavenPluginValidator mavenPluginValidator;
    
        protected String getProjectsDirectory() {
            return "src/test/projects/default-maven";
        }
    
        @Test
        void testValidate() {
            Artifact plugin = new DefaultArtifact(
                    "org.apache.maven.its.plugins",
                    "maven-it-plugin",
                    "0.1",
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildListCalculator.java

            for (TaskSegment taskSegment : taskSegments) {
                List<MavenProject> projects;
    
                if (taskSegment.isAggregating()) {
                    projects = Collections.singletonList(rootProject);
                } else {
                    projects = session.getProjects();
                }
                for (MavenProject project : projects) {
                    ClassLoader tccl = Thread.currentThread().getContextClassLoader();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    Additional Resources
    --------------------
    
    + [Contributing patches](https://maven.apache.org/guides/development/guide-maven-development.html#Creating_and_submitting_a_patch)
    + [Apache Maven JIRA project page](https://issues.apache.org/jira/projects/MNG/)
    + [Contributor License Agreement][cla]
    + [General GitHub documentation](https://help.github.com/)
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven</artifactId>
      <packaging>pom</packaging>
      <name>Maven</name>
      <version>2.0</version>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 8.6K bytes
    - Viewed (0)
Back to top