Skip to content

Commit ea05ebe

Browse files
authored
renovate bot updates (#157)
1 parent 2103e49 commit ea05ebe

File tree

2 files changed

+54
-40
lines changed

2 files changed

+54
-40
lines changed

Changelog.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## AMP HTML Validator 1.0.35
4+
- upgrade com.fasterxml.jackson from 2.13.3 to 2.13.4
5+
- upgrade javacc-maven-plugin from 2.6 to 3.0.0
6+
- upgrade maven-checkstyle-plugin from 3.1.2 to 3.2.0
7+
- upgrade maven-javadoc-plugin from 3.4.0 to 3.4.1
8+
- upgrade maven-pmd-plugin from 3.17.0 to 3.19.0
9+
- upgrade mockito-core from 4.6.1 to 4.8.0
10+
- upgrade protobuf from 3.21.4 to 3.21.6
11+
- upgrade puppycrawl.tools.checkstyle from 10.3.1 to 10.3.3
12+
- upgrade spotbugs-maven-plugin from 4.7.1.1 to 4.7.2.0
13+
- upgrade spotbugs from 4.7.1 to 4.7.2
14+
- upgrade spotbugs-annotations from 4.7.1 to 4.7.2
15+
316
## AMP HTML Validator 1.0.34
417
- fix bug that failed to parse with blank amp4email-boilerplate
518
- upgrade maven-assembly-plugin from 3.4.1 to 3.4.2

pom.xml

Lines changed: 41 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>dev.amp</groupId>
88
<artifactId>validator-java</artifactId>
99
<name>AMP validator Java API</name>
10-
<version>1.0.34</version>
10+
<version>1.0.35</version>
1111
<description>A Java validator for the AMP Html format.</description>
1212
<packaging>jar</packaging>
1313
<url>https://github.com/ampproject/validator-java</url>
@@ -62,21 +62,20 @@
6262
<maven-antrun-plugin.version>3.1.0</maven-antrun-plugin.version>
6363
<maven-dependency-plugin.version>3.3.0</maven-dependency-plugin.version>
6464
<maven-shade-plugin.version>2.4.2</maven-shade-plugin.version>
65-
<maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version>
65+
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
6666
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
6767

6868
<os-maven-plugin.version>1.7.0</os-maven-plugin.version>
69-
<protobuf.version>3.21.4</protobuf.version>
69+
<protobuf.version>3.21.6</protobuf.version>
7070
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
7171
<jdk.version>11</jdk.version>
7272
<encoding>UTF-8</encoding>
7373
<main.basedir>${project.basedir}</main.basedir>
7474

7575
<checkstyle.maxAllowedViolations>10</checkstyle.maxAllowedViolations>
7676

77-
<com.puppycrawl.checkstyle.version>10.3.1</com.puppycrawl.checkstyle.version>
78-
<fasterxml.jackson.version>2.13.3</fasterxml.jackson.version>
79-
<fasterxml.jackson.databind.version>2.13.3</fasterxml.jackson.databind.version>
77+
<com.puppycrawl.checkstyle.version>10.3.3</com.puppycrawl.checkstyle.version>
78+
<fasterxml.jackson.version>2.13.4</fasterxml.jackson.version>
8079
</properties>
8180

8281
<repositories>
@@ -252,7 +251,7 @@
252251
<plugin>
253252
<groupId>org.codehaus.mojo</groupId>
254253
<artifactId>javacc-maven-plugin</artifactId>
255-
<version>2.6</version>
254+
<version>3.0.0</version>
256255
</plugin>
257256
<plugin>
258257
<groupId>org.apache.maven.plugins</groupId>
@@ -326,17 +325,17 @@
326325
<plugin>
327326
<groupId>com.github.spotbugs</groupId>
328327
<artifactId>spotbugs-maven-plugin</artifactId>
329-
<version>4.7.1.1</version>
328+
<version>4.7.2.0</version>
330329
<dependencies>
331330
<dependency>
332331
<groupId>com.github.spotbugs</groupId>
333332
<artifactId>spotbugs</artifactId>
334-
<version>4.7.1</version>
333+
<version>4.7.2</version>
335334
</dependency>
336335
<dependency>
337336
<groupId>com.github.spotbugs</groupId>
338337
<artifactId>spotbugs-annotations</artifactId>
339-
<version>4.7.1</version>
338+
<version>4.7.2</version>
340339
</dependency>
341340
<dependency>
342341
<groupId>org.dom4j</groupId>
@@ -379,7 +378,7 @@
379378
<plugin>
380379
<groupId>org.apache.maven.plugins</groupId>
381380
<artifactId>maven-pmd-plugin</artifactId>
382-
<version>3.17.0</version>
381+
<version>3.19.0</version>
383382
<configuration>
384383
<skip>false</skip>
385384
<failOnViolation>true</failOnViolation>
@@ -424,7 +423,7 @@
424423
<plugin>
425424
<groupId>org.apache.maven.plugins</groupId>
426425
<artifactId>maven-checkstyle-plugin</artifactId>
427-
<version>3.1.2</version>
426+
<version>3.2.0</version>
428427
<dependencies>
429428
<dependency>
430429
<groupId>com.puppycrawl.tools</groupId>
@@ -616,48 +615,30 @@
616615
<version>${fasterxml.jackson.version}</version>
617616
</dependency>
618617
<dependency>
619-
<groupId>com.fasterxml.jackson.jaxrs</groupId>
620-
<artifactId>jackson-jaxrs-base</artifactId>
618+
<groupId>com.fasterxml.jackson.core</groupId>
619+
<artifactId>jackson-core</artifactId>
621620
<version>${fasterxml.jackson.version}</version>
622621
</dependency>
623622
<dependency>
624-
<groupId>com.fasterxml.jackson.jaxrs</groupId>
625-
<artifactId>jackson-jaxrs-json-provider</artifactId>
623+
<groupId>com.fasterxml.jackson.core</groupId>
624+
<artifactId>jackson-databind</artifactId>
626625
<version>${fasterxml.jackson.version}</version>
627626
</dependency>
628627
<dependency>
629-
<groupId>com.fasterxml.jackson.core</groupId>
630-
<artifactId>jackson-databind</artifactId>
631-
<version>${fasterxml.jackson.databind.version}</version>
628+
<groupId>com.fasterxml.jackson.jaxrs</groupId>
629+
<artifactId>jackson-jaxrs-base</artifactId>
630+
<version>${fasterxml.jackson.version}</version>
632631
</dependency>
633632
<dependency>
634-
<groupId>com.fasterxml.jackson.core</groupId>
635-
<artifactId>jackson-core</artifactId>
633+
<groupId>com.fasterxml.jackson.jaxrs</groupId>
634+
<artifactId>jackson-jaxrs-json-provider</artifactId>
636635
<version>${fasterxml.jackson.version}</version>
637636
</dependency>
638637
<dependency>
639638
<groupId>net.sourceforge.cssparser</groupId>
640639
<artifactId>cssparser</artifactId>
641640
<version>0.9.29</version>
642641
</dependency>
643-
<dependency>
644-
<groupId>com.puppycrawl.tools</groupId>
645-
<artifactId>checkstyle</artifactId>
646-
<version>${com.puppycrawl.checkstyle.version}</version>
647-
<scope>test</scope>
648-
</dependency>
649-
<dependency>
650-
<groupId>org.testng</groupId>
651-
<artifactId>testng</artifactId>
652-
<version>7.6.1</version>
653-
<scope>test</scope>
654-
</dependency>
655-
<dependency>
656-
<groupId>org.junit.jupiter</groupId>
657-
<artifactId>junit-jupiter-api</artifactId>
658-
<version>5.9.0</version>
659-
<scope>test</scope>
660-
</dependency>
661642
<dependency>
662643
<groupId>com.google.protobuf</groupId>
663644
<artifactId>protobuf-java</artifactId>
@@ -683,10 +664,30 @@
683664
<artifactId>commons-text</artifactId>
684665
<version>1.9</version>
685666
</dependency>
667+
668+
<!-- test -->
669+
<dependency>
670+
<groupId>com.puppycrawl.tools</groupId>
671+
<artifactId>checkstyle</artifactId>
672+
<version>${com.puppycrawl.checkstyle.version}</version>
673+
<scope>test</scope>
674+
</dependency>
675+
<dependency>
676+
<groupId>org.testng</groupId>
677+
<artifactId>testng</artifactId>
678+
<version>7.6.1</version>
679+
<scope>test</scope>
680+
</dependency>
681+
<dependency>
682+
<groupId>org.junit.jupiter</groupId>
683+
<artifactId>junit-jupiter-api</artifactId>
684+
<version>5.9.0</version>
685+
<scope>test</scope>
686+
</dependency>
686687
<dependency>
687688
<groupId>org.mockito</groupId>
688689
<artifactId>mockito-core</artifactId>
689-
<version>4.6.1</version>
690+
<version>4.8.0</version>
690691
<scope>test</scope>
691692
</dependency>
692693
</dependencies>

0 commit comments

Comments
 (0)