This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit d9e694d2007ca56d20a506b421171d663c9bb531 Author: Benoit Tellier <[email protected]> AuthorDate: Mon Nov 4 14:27:51 2019 +0700 JAMES-2933 Define mailetdocs-maven-plugin version globally It was unspecified for server/mailet/dkim and /server/mailet/mailets I suspect this could cause IDE integration issues reported on the DEV mailing list by Jerry Malcolm cf https://www.mail-archive.com/[email protected]/msg62734.html --- mailet/pom.xml | 9 --------- pom.xml | 5 +++++ 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/mailet/pom.xml b/mailet/pom.xml index 4c1511b..6621800 100644 --- a/mailet/pom.xml +++ b/mailet/pom.xml @@ -65,15 +65,6 @@ </properties> <build> - <pluginManagement> - <plugins> - <plugin> - <groupId>${james.groupId}</groupId> - <artifactId>mailetdocs-maven-plugin</artifactId> - <version>${project.version}</version> - </plugin> - </plugins> - </pluginManagement> <plugins> <plugin> <groupId>org.apache.rat</groupId> diff --git a/pom.xml b/pom.xml index 37281d3..cf6d86a 100644 --- a/pom.xml +++ b/pom.xml @@ -2670,6 +2670,11 @@ <build> <pluginManagement> <plugins> + <plugin> + <groupId>${james.groupId}</groupId> + <artifactId>mailetdocs-maven-plugin</artifactId> + <version>${project.version}</version> + </plugin> <!-- Order by groupId / artifactId / scope --> <plugin> <groupId>com.coderplus.maven.plugins</groupId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
