Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,183 for project (3.21 sec)

  1. 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)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

        // reason it isn't ? This localization is kind-of a code smell.
    
        public static String getKey(MavenProject project) {
            return project.getGroupId() + ':' + project.getArtifactId() + ':' + project.getVersion();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/ExtensionRealmCache.java

         * Registers the specified cache record for usage with the given project. Integrators can use the information
         * collected from this method in combination with a custom cache implementation to dispose unused records from the
         * cache.
         *
         * @param project The project that employs the plugin realm, must not be {@code null}.
         * @param record The cache record being used for the project, must not be {@code null}.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilder.java

    @Experimental
    public interface ProjectBuilder extends Service {
    
        /**
         * Creates a {@link org.apache.maven.api.Project} from a POM file.
         *
         * @param request {@link ProjectBuilderRequest}
         * @return the {@link ProjectBuilderResult} containing the built project and possible errors
         * @throws ProjectBuilderException if the project cannot be created
         * @throws IllegalArgumentException if an argument is {@code null} or invalid
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 30 23:39:19 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java

                MavenProject project = new MavenProject(model);
                project.setOriginalModel(model);
                DefaultConsumerPomArtifactTransformer t = new DefaultConsumerPomArtifactTransformer((s, p, f) -> {
                    try (InputStream is = Files.newInputStream(f)) {
                        return DefaultConsumerPomBuilder.transform(new MavenStaxReader().read(is), project);
                    }
                });
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

    // do not attempt to find projects when the plugin is applied just to generate accessors
    if (project.name != "gradle-kotlin-dsl-accessors" && project.name != "test" /* remove once wrapper is updated */) {
        dependencies {
            testFixturesApi(project(":internal-testing"))
            // platform
            testFixturesImplementation(platform(project(":distributions-dependencies")))
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutionException.java

            super(message);
            this.project = project;
        }
    
        public LifecycleExecutionException(String message, MojoExecution execution, MavenProject project) {
            super(message);
            this.project = project;
        }
    
        public LifecycleExecutionException(String message, MojoExecution execution, MavenProject project, Throwable cause) {
            super(message, cause);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/url-append/child/pom.xml

                  <expressions>
                    <expression>project/url</expression>
                    <expression>project/scm</expression>
                    <expression>project/distributionManagement/site</expression>
                  </expressions>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

    under the License.
    -->
    
    <!-- START SNIPPET: superpom -->
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
      </properties>
    
      <build>
        <directory>${project.basedir}/target</directory>
        <outputDirectory>${project.build.directory}/classes</outputDirectory>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/DefaultMavenProjectHelper.java

            Artifact artifact = new AttachedArtifact(project.getArtifact(), artifactType, handler);
    
            artifact.setFile(artifactFile);
            artifact.setResolved(true);
    
            attachArtifact(project, artifact);
        }
    
        public void attachArtifact(MavenProject project, File artifactFile, String artifactClassifier) {
            Artifact projectArtifact = project.getArtifact();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 4.3K bytes
    - Viewed (0)
Back to top