aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorSean Owen <srowen@gmail.com>2021-10-05 15:49:47 -0500
committerGitHub <noreply@github.com>2021-10-05 15:49:47 -0500
commitb51346c072723d6c3f14da17a0c842243af8a2ab (patch)
treec37236e48c82cf12d47b5a6f45946dff5f9a5f64 /pom.xml
parentfc50fca12f12c44867b1aa07f8a2f7d328a2fd03 (diff)
downloadzxing-b51346c072723d6c3f14da17a0c842243af8a2ab.tar.gz
Enforce line length and indent in checkstyle (#1448)
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml23
1 files changed, 19 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index 8c37756bf..492a1d233 100644
--- a/pom.xml
+++ b/pom.xml
@@ -166,7 +166,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>3.3.0</version>
+ <version>3.3.1</version>
<configuration>
<source>${java.version}</source>
<quiet>true</quiet>
@@ -263,7 +263,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
- <version>1.11.3</version>
+ <version>1.12.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -311,7 +311,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
- <version>3.3.1</version>
+ <version>3.3.2</version>
</plugin>
<plugin>
<groupId>com.simpligility.maven.plugins</groupId>
@@ -442,7 +442,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
- <version>8.45.1</version>
+ <version>9.0</version>
</dependency>
</dependencies>
</plugin>
@@ -690,6 +690,21 @@
</site>
</distributionManagement>
+ <repositories>
+ <repository>
+ <id>google-maven-central</id>
+ <name>GCS Maven Central mirror</name>
+ <url>https://maven-central.storage-download.googleapis.com/maven2/</url>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>google-maven-central</id>
+ <name>GCS Maven Central mirror</name>
+ <url>https://maven-central.storage-download.googleapis.com/maven2/</url>
+ </pluginRepository>
+ </pluginRepositories>
+
<profiles>
<profile>
<id>build-android</id>