Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for setReports (0.05 seconds)

  1. compat/maven-model/pom.xml

                  <exclude>org.apache.maven.model.ModelBase#addProperty(java.lang.String,java.lang.String):METHOD_REMOVED</exclude>
                  <exclude>org.apache.maven.model.ModelBase#getReports():METHOD_REMOVED</exclude>
                  <exclude>org.apache.maven.model.ModelBase#setReports(java.lang.Object):METHOD_REMOVED</exclude>
                  <exclude>org.apache.maven.model.Notifier#addConfiguration(java.lang.String,java.lang.String):METHOD_REMOVED</exclude>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            List<String> src = source.getReports();
            if (!src.isEmpty()) {
                List<String> tgt = target.getReports();
                List<String> merged = new ArrayList<>(tgt.size() + src.size());
                merged.addAll(tgt);
                merged.addAll(src);
                target.setReports(merged);
    
                InputLocation sourceLocation = source.getLocation("reports");
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Apr 03 11:21:39 GMT 2025
    - 99.2K bytes
    - Click Count (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java

                dom.addChild(configuration);
            }
    
            if (!reportSet.getReports().isEmpty()) {
                InputLocation location = reportSet.getLocation("reports");
                Xpp3Dom reports = new Xpp3Dom("reports", location);
                int n = 0;
                for (String report : reportSet.getReports()) {
                    addDom(reports, "report", report, (location == null) ? null : location.getLocation(n++));
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 10 07:09:12 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                // TODO: This is ugly
                task.setConfig(project.getResources().getText().fromFile(checkstyle.getConfigDirectory().file("checkstyle-api.xml")));
                task.setClasspath(layout.files());
                task.getReports().getXml().getOutputLocation().set(new File(checkstyle.getReportsDir(), "checkstyle-api.xml"));
            });
        }
    
        private static class DeduplicatePackageInfoFiles implements Spec<File> {
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Oct 02 14:18:24 GMT 2025
    - 10.4K bytes
    - Click Count (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    val = interpolate(org);
                    if (org != val) {
                        reportSet.setId(val);
                    }
                    // Reports
                    visit(reportSet.getReports());
                }
            }
    
            private void visit(Properties properties) {
                if (properties != null) {
                    for (Map.Entry<Object, Object> entry : properties.entrySet()) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 43.1K bytes
    - Click Count (0)
Back to Top