File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 139
139
</dependencies >
140
140
<build >
141
141
<plugins >
142
+ <plugin >
143
+ <groupId >org.apache.maven.plugins</groupId >
144
+ <artifactId >maven-enforcer-plugin</artifactId >
145
+ <executions >
146
+ <execution >
147
+ <id >enforce-banned-dependencies</id >
148
+ <goals >
149
+ <goal >enforce</goal >
150
+ </goals >
151
+ <configuration >
152
+ <rules >
153
+ <bannedDependencies >
154
+ <includes >
155
+ <include >net.bytebuddy:byte-buddy</include >
156
+ </includes >
157
+ <excludes >
158
+ <exclude >org.assertj:assertj-core</exclude >
159
+ <exclude >*:*:*:jar:compile</exclude >
160
+ </excludes >
161
+ </bannedDependencies >
162
+ </rules >
163
+ </configuration >
164
+ </execution >
165
+ </executions >
166
+ </plugin >
142
167
<plugin >
143
168
<groupId >org.apache.maven.plugins</groupId >
144
169
<artifactId >maven-compiler-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments