File tree 2 files changed +8
-0
lines changed
src/main/java/com/qdesrame/openapi/diff
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ usage: openapi-diff <old> <new>
76
76
--query < property=value> use query param for authorisation
77
77
--state Only output diff state: no_changes,
78
78
incompatible, compatible
79
+ --fail-on-incompatible Fail only if API changes broke backward compatibility
79
80
--trace be extra verbose
80
81
--version print the version information and exit
81
82
--warn Print warning information
Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ public static void main(String... args) {
28
28
.longOpt ("state" )
29
29
.desc ("Only output diff state: no_changes, incompatible, compatible" )
30
30
.build ());
31
+ options .addOption (
32
+ Option .builder ()
33
+ .longOpt ("fail-on-incompatible" )
34
+ .desc ("Fail only if API changes broke backward compatibility" )
35
+ .build ());
31
36
options .addOption (Option .builder ().longOpt ("trace" ).desc ("be extra verbose" ).build ());
32
37
options .addOption (
33
38
Option .builder ().longOpt ("debug" ).desc ("Print debugging information" ).build ());
@@ -179,6 +184,8 @@ public static void main(String... args) {
179
184
if (line .hasOption ("state" )) {
180
185
System .out .println (result .isChanged ().getValue ());
181
186
System .exit (0 );
187
+ } else if (line .hasOption ("fail-on-incompatible" )) {
188
+ System .exit (result .isCompatible () ? 0 : 1 );
182
189
} else {
183
190
System .exit (result .isUnchanged () ? 0 : 1 );
184
191
}
You can’t perform that action at this time.
0 commit comments