Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for outputDirectory (0.36 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/ReportingConverter.java

    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles conversion of the <code>&lt;reporting&gt;</code> section into the configuration of Maven Site Plugin 3.x,
     * i.e. <code>reportPlugins</code> and <code>outputDirectory</code> parameters.
     *
     * @deprecated since maven 4.0, this interface is not used anymore and is only here for compatibility
     */
    @Deprecated
    public interface ReportingConverter {
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/ExtractAndroidStudioTask.kt

    import org.gradle.api.file.FileSystemOperations
    import org.gradle.api.file.RelativePath
    import org.gradle.api.internal.file.FileOperations
    import org.gradle.api.tasks.InputFiles
    import org.gradle.api.tasks.OutputDirectory
    import org.gradle.api.tasks.PathSensitive
    import org.gradle.api.tasks.PathSensitivity
    import org.gradle.api.tasks.TaskAction
    import org.gradle.process.ExecOperations
    import org.gradle.work.DisableCachingByDefault
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Feb 19 08:02:04 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  3. futures/failureaccess/pom.xml

              </execution>
            </executions>
          </plugin>
          <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
              <archive>
                <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
                <manifestEntries>
                  <Multi-Release>true</Multi-Release>
                </manifestEntries>
              </archive>
              <excludes>
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Oct 02 19:27:26 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

    import org.gradle.api.logging.LogLevel
    import org.gradle.api.tasks.CacheableTask
    import org.gradle.api.tasks.Input
    import org.gradle.api.tasks.InputFiles
    import org.gradle.api.tasks.Internal
    import org.gradle.api.tasks.OutputDirectory
    import org.gradle.api.tasks.PathSensitive
    import org.gradle.api.tasks.PathSensitivity
    import org.gradle.api.tasks.TaskAction
    import org.gradle.util.internal.TextUtil
    import java.io.File
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Apr 08 01:46:59 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java

         * where resource {@code targetPath} elements were always interpreted as relative to the output directory
         * ({@code project.build.outputDirectory} or {@code project.build.testOutputDirectory}),
         * not the project base directory. Maven 3 plugins (like maven-resources-plugin) expect to receive
         * the relative path and perform the resolution themselves.
         * </p>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 07 13:11:07 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         * </p>
         * <p>
         * This behavior maintains the Maven 3.x semantic where resource {@code targetPath} elements
         * are resolved relative to the appropriate output directory ({@code project.build.outputDirectory}
         * or {@code project.build.testOutputDirectory}), <strong>not</strong> the project base directory.
         * </p>
         * <p>
         * In Maven 3, when a resource configuration specifies:
         * </p>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 07 13:11:07 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  7. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    val = interpolate(org);
                    if (org != val) {
                        build.setTestSourceDirectory(val);
                    }
                    // OutputDirectory
                    org = build.getOutputDirectory();
                    val = interpolate(org);
                    if (org != val) {
                        build.setOutputDirectory(val);
                    }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  8. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                            "resources-project-builder",
                            "reporting-interpolation",
                            "target",
                            "site")),
                    pom.getValue("reporting/outputDirectory"));
        }
    
        @Test
        void testPluginOrder() throws Exception {
            PomTestWrapper pom = buildPom("plugin-order");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
  9. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            if (src != null) {
                if (sourceDominant || target.getOutputDirectory() == null) {
                    target.setOutputDirectory(src);
                    target.setLocation("outputDirectory", source.getLocation("outputDirectory"));
                }
            }
        }
    
        protected void mergeReporting_ExcludeDefaults(
                Reporting target, Reporting source, boolean sourceDominant, Map<Object, Object> context) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  10. impl/maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

                <artifactId>maven-jar-plugin</artifactId>
                <version>2.1</version>
                <configuration>
                  <archive>
                    <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
                  </archive>
                </configuration>
              </plugin>
            </plugins>
          </build>
        </profile>
        <profile>
          <id>release</id>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top