File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 103
103
<artifactId >coveralls-maven-plugin</artifactId >
104
104
<version >4.3.0</version >
105
105
</plugin >
106
+ <plugin >
107
+ <artifactId >maven-enforcer-plugin</artifactId >
108
+ <version >1.0.1</version >
109
+ <dependencies >
110
+ <dependency >
111
+ <groupId >org.semver</groupId >
112
+ <artifactId >enforcer-rule</artifactId >
113
+ <version >0.9.33</version >
114
+ </dependency >
115
+ </dependencies >
116
+ <executions >
117
+ <execution >
118
+ <id >check</id >
119
+ <phase >verify</phase >
120
+ <goals >
121
+ <goal >enforce</goal >
122
+ </goals >
123
+ <configuration >
124
+ <rules >
125
+ <requireBackwardCompatibility implementation =" org.semver.enforcer.RequireBackwardCompatibility" >
126
+ <compatibilityType >BACKWARD_COMPATIBLE_USER</compatibilityType >
127
+ </requireBackwardCompatibility >
128
+ </rules >
129
+ </configuration >
130
+ </execution >
131
+ </executions >
132
+ </plugin >
106
133
</plugins >
107
134
</build >
108
135
<dependencies >
You can’t perform that action at this time.
0 commit comments