This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-jxr.git
The following commit(s) were added to refs/heads/master by this push: new 8bf3adb Move SLF4J version to a property 8bf3adb is described below commit 8bf3adba9ea94f9881aa0aee1d51f835a59b337f Author: Michael Osipov <micha...@apache.org> AuthorDate: Fri Dec 2 22:46:07 2022 +0100 Move SLF4J version to a property --- pom.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index dfdac2a..f58846c 100644 --- a/pom.xml +++ b/pom.xml @@ -65,6 +65,7 @@ under the License. <properties> <javaVersion>8</javaVersion> <sitePluginVersion>3.12.1</sitePluginVersion> + <slf4jVersion>1.7.36</slf4jVersion> <javadocPluginVersion>3.4.1</javadocPluginVersion> <maven.site.path>jxr-archives/jxr-LATEST</maven.site.path> <checkstyle.violation.ignore>None</checkstyle.violation.ignore> @@ -105,12 +106,12 @@ under the License. <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> - <version>1.7.36</version> + <version>${slf4jVersion}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> - <version>1.7.36</version> + <version>${slf4jVersion}</version> </dependency> <dependency> <groupId>junit</groupId>