This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch 1.2.X in repository https://gitbox.apache.org/repos/asf/mina-ftpserver.git
The following commit(s) were added to refs/heads/1.2.X by this push: new 3f98828 Applied patch submitted by hboutemy on branch 1.2.X 3f98828 is described below commit 3f9882888ae526512c63c23e8f474da3e512737e Author: emmanuel lecharny <elecha...@apache.org> AuthorDate: Sun Mar 20 10:09:39 2022 +0100 Applied patch submitted by hboutemy on branch 1.2.X --- core/pom.xml | 6 +++--- distribution/pom.xml | 2 +- examples/ftpserver-osgi-ftplet-service/pom.xml | 4 ++-- examples/pom.xml | 2 +- pom.xml | 10 +++++----- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/core/pom.xml b/core/pom.xml index c48d02f..68d47c8 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ <packaging>bundle</packaging> <properties> - <checkstyle.configdir>${basedir}/..</checkstyle.configdir> + <checkstyle.configdir>..</checkstyle.configdir> </properties> <build> @@ -48,7 +48,7 @@ <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> - <version>2.5.3</version> + <version>5.1.4</version> <extensions>true</extensions> <configuration> <instructions> @@ -81,7 +81,7 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> - <version>1.0.0</version> + <version>1.1.0</version> <executions> <execution> <phase>generate-resources</phase> diff --git a/distribution/pom.xml b/distribution/pom.xml index 5af8e0c..4f3f0f9 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -24,7 +24,7 @@ <name>Apache FtpServer</name> <properties> - <checkstyle.configdir>${basedir}/..</checkstyle.configdir> + <checkstyle.configdir>..</checkstyle.configdir> </properties> <build> diff --git a/examples/ftpserver-osgi-ftplet-service/pom.xml b/examples/ftpserver-osgi-ftplet-service/pom.xml index a2681c7..14d442f 100644 --- a/examples/ftpserver-osgi-ftplet-service/pom.xml +++ b/examples/ftpserver-osgi-ftplet-service/pom.xml @@ -29,7 +29,7 @@ <packaging>bundle</packaging> <properties> - <checkstyle.configdir>${basedir}/../..</checkstyle.configdir> + <checkstyle.configdir>../..</checkstyle.configdir> </properties> <dependencies> @@ -52,7 +52,7 @@ <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> - <version>2.5.3</version> + <version>5.1.4</version> <extensions>true</extensions> <configuration> <instructions> diff --git a/examples/pom.xml b/examples/pom.xml index 185a8de..2f05b47 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -34,7 +34,7 @@ </modules> <properties> - <checkstyle.configdir>${basedir}/..</checkstyle.configdir> + <checkstyle.configdir>..</checkstyle.configdir> </properties> </project> diff --git a/pom.xml b/pom.xml index 5372c57..cc6f9d1 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ <parent> <artifactId>apache</artifactId> <groupId>org.apache</groupId> - <version>24</version> + <version>25</version> </parent> <modelVersion>4.0.0</modelVersion> @@ -174,7 +174,7 @@ <!-- Checkstyle configuration --> <checkstyle.plugin.version>3.1.2</checkstyle.plugin.version> <checkstyle.version>9.3</checkstyle.version> - <checkstyle.configdir>${basedir}</checkstyle.configdir> + <checkstyle.configdir>.</checkstyle.configdir> <!-- Java version to use --> <maven.compile.source>1.8</maven.compile.source> @@ -541,8 +541,8 @@ <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.plugin.version}</version> <configuration> - <configLocation>${checkstyle.configdir}/checkstyle.xml</configLocation> - <suppressionsLocation>${checkstyle.configdir}/checkstyle-suppressions.xml</suppressionsLocation> + <configLocation>${basedir}/${checkstyle.configdir}/checkstyle.xml</configLocation> + <suppressionsLocation>${basedir}/${checkstyle.configdir}/checkstyle-suppressions.xml</suppressionsLocation> <enableRulesSummary>false</enableRulesSummary> <propertyExpansion>basedir=${basedir}</propertyExpansion> </configuration> @@ -550,7 +550,7 @@ <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> - <version>${checksytyle.version}</version> + <version>${checkstyle.version}</version> </dependency> </dependencies> <executions>