Skip to content

Commit 1d9a227

Browse files
committed
Merge branch '__rultor'
2 parents 9e5bdab + d67c662 commit 1d9a227

35 files changed

+259
-246
lines changed

pom.xml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,17 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
149149
<artifactId>guava</artifactId>
150150
<version>32.1.3-jre</version>
151151
</dependency>
152+
<dependency>
153+
<groupId>com.google.code.gson</groupId>
154+
<artifactId>gson</artifactId>
155+
<version>2.8.9</version>
156+
<scope>runtime</scope>
157+
</dependency>
158+
<dependency>
159+
<groupId>org.ow2.asm</groupId>
160+
<artifactId>asm</artifactId>
161+
<version>9.6</version>
162+
</dependency>
152163
<dependency>
153164
<groupId>org.junit.jupiter</groupId>
154165
<artifactId>junit-jupiter-api</artifactId>
@@ -194,7 +205,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
194205
<dependency>
195206
<groupId>org.hibernate.validator</groupId>
196207
<artifactId>hibernate-validator</artifactId>
197-
<version>6.0.20.Final</version>
208+
<version>8.0.1.Final</version>
198209
<scope>test</scope>
199210
</dependency>
200211
</dependencies>
@@ -224,7 +235,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
224235
<plugin>
225236
<groupId>com.qulice</groupId>
226237
<artifactId>qulice-maven-plugin</artifactId>
227-
<version>0.20.0</version>
238+
<version>0.22.0</version>
228239
</plugin>
229240
</plugins>
230241
</build>

qulice-checkstyle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
7070
<dependency>
7171
<groupId>com.puppycrawl.tools</groupId>
7272
<artifactId>checkstyle</artifactId>
73-
<version>10.9.3</version>
73+
<version>10.14.1</version>
7474
<exclusions>
7575
<exclusion>
7676
<groupId>net.sf.saxon</groupId>

qulice-checkstyle/src/test/java/com/qulice/checkstyle/ChecksTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* Integration test case for all checkstyle checks.
5858
* @since 0.3
5959
*/
60-
public final class ChecksTest {
60+
final class ChecksTest {
6161

6262
/**
6363
* Test checkstyle for true negative.
@@ -66,7 +66,7 @@ public final class ChecksTest {
6666
*/
6767
@ParameterizedTest
6868
@MethodSource("checks")
69-
public void testCheckstyleTruePositive(final String dir) throws Exception {
69+
void testCheckstyleTruePositive(final String dir) throws Exception {
7070
final AuditListener listener = Mockito.mock(AuditListener.class);
7171
final Collector collector = new ChecksTest.Collector();
7272
Mockito.doAnswer(collector).when(listener)
@@ -118,7 +118,7 @@ public void testCheckstyleTruePositive(final String dir) throws Exception {
118118
*/
119119
@ParameterizedTest
120120
@MethodSource("checks")
121-
public void testCheckstyleTrueNegative(final String dir) throws Exception {
121+
void testCheckstyleTrueNegative(final String dir) throws Exception {
122122
final AuditListener listener = Mockito.mock(AuditListener.class);
123123
final Collector collector = new ChecksTest.Collector();
124124
Mockito.doAnswer(collector).when(listener)

0 commit comments

Comments
 (0)