Skip to content

Commit 26b7e7c

Browse files
committedJul 24, 2022
#1088 0.20.0 for itself
1 parent f9b01ba commit 26b7e7c

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed
 

‎pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -221,4 +221,18 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
221221
</plugins>
222222
</pluginManagement>
223223
</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>
224238
</project>

‎qulice-maven-plugin/src/it/multi-module/mod-alpha/src/test/java/com/qulice/plugin/alpha/MainTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ public final class MainTest {
4545
@Test
4646
public void testSquare() {
4747
MatcherAssert.assertThat(1, Matchers.is(Main.square(1)));
48-
// @checkstyle MagicNumber (1 line)
4948
MatcherAssert.assertThat(4, Matchers.is(Main.square(2)));
5049
}
5150

‎qulice-maven-plugin/src/main/java/com/qulice/maven/CheckMojo.java

-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ private void run() throws ValidationException {
109109
this.submit(env, files, validators);
110110
for (final Future<Collection<Violation>> future : futures) {
111111
try {
112-
// @checkstyle MagicNumber (1 line)
113112
results.addAll(future.get(10L, TimeUnit.MINUTES));
114113
} catch (final InterruptedException ex) {
115114
Thread.currentThread().interrupt();

‎qulice-pmd/src/test/java/com/qulice/pmd/UseStringIsEmptyRuleTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ public final class UseStringIsEmptyRuleTest {
6363
}
6464
)
6565
public void detectLengthComparisons(final String file) throws Exception {
66-
// @checkstyle MagicNumber (7 lines)
6766
new PmdAssert(
6867
file, new IsEqual<>(false),
6968
new CombinableMatcher<>(containsMatcher(file, 16))

0 commit comments

Comments
 (0)
Please sign in to comment.