Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for project (0.15 sec)

  1. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

    #
    
    Certain source files distributed by Oracle America, Inc. and/or its
    affiliates are subject to the following clarification and special
    exception to the GPLv2, based on the GNU Project exception for its
    Classpath libraries, known as the GNU Classpath Exception, but only
    where Oracle has expressly included in the particular source file's
    header the words "Oracle designates this particular file as subject to
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue May 11 18:59:18 GMT 2021
    - 38.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

            if (Files.isDirectory(path)) {
                /*
                 * Package hierarchy: only one module with descriptor at the root.
                 * This is the layout of output directories in projects using the
                 * classical (Java 8 and before) way to organize source files.
                 */
                Path file = path.resolve(MODULE_INFO);
                if (Files.isRegularFile(file)) {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

            return true;
        }
    
        private Set<String> getReactorProjectKeys(Collection<MavenProject> projects) {
            Set<String> projectKeys = new HashSet<>(projects.size() * 2);
            for (MavenProject project : projects) {
                String key = ArtifactUtils.key(project.getGroupId(), project.getArtifactId(), project.getVersion());
                projectKeys.add(key);
            }
            return projectKeys;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  4. maven-core/src/main/resources/META-INF/maven/extension.xml

        <exportedPackage>org.apache.maven.monitor</exportedPackage>
        <exportedPackage>org.apache.maven.plugin</exportedPackage>
        <exportedPackage>org.apache.maven.profiles</exportedPackage>
        <exportedPackage>org.apache.maven.project</exportedPackage>
        <exportedPackage>org.apache.maven.reporting</exportedPackage>
        <exportedPackage>org.apache.maven.repository</exportedPackage>
        <exportedPackage>org.apache.maven.rtinfo.*</exportedPackage>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  5. 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)
  6. LICENSE

          with Licensor regarding such Contributions.
    
       6. Trademarks. This License does not grant permission to use the trade
          names, trademarks, service marks, or product names of the Licensor,
          except as required for reasonable and customary use in describing the
          origin of the Work and reproducing the content of the NOTICE file.
    
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 11 20:39:30 GMT 2013
    - 11.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            lifecyclePluginResolver.resolveMissingPluginVersions(project, session);
    
            final List<MojoExecution> executions = calculateMojoExecutions(session, project, tasks);
    
            if (setup) {
                setupMojoExecutions(session, project, executions);
            }
    
            final List<ExecutionPlanItem> planItem = ExecutionPlanItem.createExecutionPlanItems(project, executions);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCollectorRequest.java

                    .build();
        }
    
        @Nonnull
        static DependencyCollectorRequest build(@Nonnull Session session, @Nonnull Project project) {
            return builder()
                    .session(nonNull(session, "session cannot be null"))
                    .project(nonNull(project, "project cannot be null"))
                    .build();
        }
    
        @Nonnull
        static DependencyCollectorRequestBuilder builder() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    import org.apache.maven.plugin.version.PluginVersionResolver;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.artifact.InvalidDependencyVersionException;
    import org.apache.maven.settings.Settings;
    import org.codehaus.plexus.PlexusContainer;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 10K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                                        <message>Current version of Maven ${maven.version} required to build the project
                                            should be ${project.prerequisites.maven}, or higher!
                                        </message>
                                        <version>[${project.prerequisites.maven},)</version>
                                    </requireMavenVersion>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 24.5K bytes
    - Viewed (0)
Back to top