forked from INRIA/spoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
revapi.json
39 lines (34 loc) · 866 Bytes
/
revapi.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"revapi": {
// use java module
// Doc there: http://revapi.org/modules/revapi-java/extensions/java.html
"java": {
// filter rules to compare API
"filter": {
// specify which package to filter
"packages": {
"regex": true,
"include": ["spoon.*"],
"exclude": [
"spoon\\..*\\.test(\\..*)?",
"spoon\\..*\\.internal(\\..*)?"
]
},
// Exclude all impl classes
"classes": {
"regex": true,
"exclude": [".*Impl.*"]
}
},
"reportUsesFor": ["java.missing.newClass", "java.missing.oldClass"]
},
"reporter" : {
"text" : {
"minSeverity": "BREAKING",
"output" : "target/revapi_report.md",
"template": "chore/revapi_tpl.ftl",
"append": false
}
}
}
}