INNER CODE UNIT · Java

AggregateRevapiReports

fabric8io/kubernetes-client · scripts/AggregateRevapiReports.java:39

class AggregateRevapiReports {

  static class ModuleReport {
    final Path jsonPath;
    final String modulePath;

    ModuleReport(Path jsonPath, String modulePath) {
      this.jsonPath = jsonPath;
      this.modulePath = modulePath;
    }
  }

  public static void main(String[] args) throws Exception {
    System.out.println("Copying revapi-report.json files into target/staging...");

    Path rootDir = Paths.get(".");
    Path stagingDir = rootDir.resolve("target/staging");
    Files.createDirectories(stagingDir);

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…