Skip to content

Commit

Permalink
started HtmlOutputGenerator
Browse files Browse the repository at this point in the history
  • Loading branch information
siom79 committed Mar 4, 2024
1 parent e7c168b commit 33654be
Show file tree
Hide file tree
Showing 25 changed files with 1,083 additions and 39 deletions.
9 changes: 0 additions & 9 deletions japicmp-testbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,6 @@
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>

<dependencies>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.15.3</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public enum Reason {
IllegalState,
IllegalArgument,
XsltError,
IncompatibleChange
IncompatibleChange,
ResourceNotFound
}

public JApiCmpException(Reason reason, String msg) {
Expand Down
13 changes: 13 additions & 0 deletions japicmp/src/main/java/japicmp/output/html/HtmlOutput.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package japicmp.output.html;

public class HtmlOutput {
private final String html;

public HtmlOutput(String html) {
this.html = html;
}

public String getHtml() {
return html;
}
}
Loading

0 comments on commit 33654be

Please sign in to comment.