File tree 4 files changed +14
-3
lines changed
it/multi-module/mod-alpha/src/test/java/com/qulice/plugin/alpha
main/java/com/qulice/maven
qulice-pmd/src/test/java/com/qulice/pmd
4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -221,4 +221,18 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
221
221
</plugins >
222
222
</pluginManagement >
223
223
</build >
224
+ <profiles >
225
+ <profile >
226
+ <id >qulice</id >
227
+ <build >
228
+ <plugins >
229
+ <plugin >
230
+ <groupId >com.qulice</groupId >
231
+ <artifactId >qulice-maven-plugin</artifactId >
232
+ <version >0.20.0</version >
233
+ </plugin >
234
+ </plugins >
235
+ </build >
236
+ </profile >
237
+ </profiles >
224
238
</project >
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ public final class MainTest {
45
45
@ Test
46
46
public void testSquare () {
47
47
MatcherAssert .assertThat (1 , Matchers .is (Main .square (1 )));
48
- // @checkstyle MagicNumber (1 line)
49
48
MatcherAssert .assertThat (4 , Matchers .is (Main .square (2 )));
50
49
}
51
50
Original file line number Diff line number Diff line change @@ -109,7 +109,6 @@ private void run() throws ValidationException {
109
109
this .submit (env , files , validators );
110
110
for (final Future <Collection <Violation >> future : futures ) {
111
111
try {
112
- // @checkstyle MagicNumber (1 line)
113
112
results .addAll (future .get (10L , TimeUnit .MINUTES ));
114
113
} catch (final InterruptedException ex ) {
115
114
Thread .currentThread ().interrupt ();
Original file line number Diff line number Diff line change @@ -63,7 +63,6 @@ public final class UseStringIsEmptyRuleTest {
63
63
}
64
64
)
65
65
public void detectLengthComparisons (final String file ) throws Exception {
66
- // @checkstyle MagicNumber (7 lines)
67
66
new PmdAssert (
68
67
file , new IsEqual <>(false ),
69
68
new CombinableMatcher <>(containsMatcher (file , 16 ))
You can’t perform that action at this time.
0 commit comments