io.redskap.swagger.brake.runner.Options Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-brake Show documentation
Show all versions of swagger-brake Show documentation
Swagger contract checker for breaking API changes
package io.redskap.swagger.brake.runner;
import lombok.Data;
@Data
public class Options {
private String oldApiPath;
private String newApiPath;
private OutputFormat outputFormat;
private String outputFilePath;
private String mavenRepoUrl;
private String groupId;
private String artifactId;
}