Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for reporting (0.23 sec)

  1. compat/maven-model/src/test/java/org/apache/maven/model/ReportingTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@code Reporting}.
     *
     */
    class ReportingTest {
    
        @Test
        void testHashCodeNullSafe() {
            new Reporting().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new Reporting().equals(null));
    
            new Reporting().equals(new Reporting());
        }
    
        @Test
        void testEqualsIdentity() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultModelPathTranslator.java

                        .build();
            }
    
            Reporting reporting = model.getReporting();
            Reporting newReporting = null;
            if (reporting != null) {
                newReporting = Reporting.newBuilder(reporting)
                        .outputDirectory(alignToBaseDirectory(reporting.getOutputDirectory(), basedir))
                        .build();
            }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportConfigurationExpander.java

        @Override
        public void expandPluginConfiguration(Model model, ModelBuildingRequest request, ModelProblemCollector problems) {
            Reporting reporting = model.getReporting();
    
            if (reporting != null) {
                for (ReportPlugin reportPlugin : reporting.getPlugins()) {
                    XmlNode parentDom = reportPlugin.getDelegate().getConfiguration();
    
                    if (parentDom != null) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java

                build.setTestOutputDirectory(alignToBaseDirectory(build.getTestOutputDirectory(), basedir));
            }
    
            Reporting reporting = model.getReporting();
    
            if (reporting != null) {
                reporting.setOutputDirectory(alignToBaseDirectory(reporting.getOutputDirectory(), basedir));
            }
        }
    
        public String alignToBaseDirectory(String path, File basedir) {
            if (basedir == null) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml

    -->
    
    <!-- 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>
        <!-- Fixed date for reproducible build -->
        <project.build.outputTimestamp>1980-02-01T00:00:00Z</project.build.outputTimestamp>
      </properties>
    
      <build>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. .teamcity/test-buckets.json

    					"build-events",
    					"resources-s3",
    					"plugins-jvm-test-suite",
    					"plugins-version-catalog",
    					"plugins-application",
    					"reporting",
    					"tooling-native",
    					"language-jvm",
    					"instrumentation-reporting",
    					"plugins-java-library"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 08 11:14:16 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  7. compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java

                    builder.executions(merged.values());
                }
            }
    
            @Override
            protected void mergeReporting_Plugins(
                    Reporting.Builder builder,
                    Reporting target,
                    Reporting source,
                    boolean sourceDominant,
                    Map<Object, Object> context) {
                List<ReportPlugin> src = source.getPlugins();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

    -->
    
    <!-- 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>
        <!-- Fixed date for reproducible build -->
        <project.build.outputTimestamp>1980-02-01T00:00:00Z</project.build.outputTimestamp>
      </properties>
    
      <build>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. api/pom.xml

                  <phase>none</phase>
                </execution>
              </executions>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    
      <profiles>
        <profile>
          <id>reporting</id>
          <reporting>
            <plugins>
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                  <tags>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Oct 19 18:11:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FileToRawModelMerger.java

            // don't merge
        }
    
        @Override
        protected void mergeReporting_Plugins(
                Reporting.Builder builder,
                Reporting target,
                Reporting source,
                boolean sourceDominant,
                Map<Object, Object> context) {
            // don't merge
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top