This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git


The following commit(s) were added to refs/heads/master by this push:
     new 8f032ca  Moved exec-maven-plugin to pluginManagement section.
8f032ca is described below

commit 8f032caed3614a7177b2aa39fff08893fda9f2a2
Author: Alex Herbert <[email protected]>
AuthorDate: Mon Mar 18 21:13:14 2019 +0000

    Moved exec-maven-plugin to pluginManagement section.
---
 commons-rng-examples/pom.xml | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/commons-rng-examples/pom.xml b/commons-rng-examples/pom.xml
index bc19daa..7e37120 100644
--- a/commons-rng-examples/pom.xml
+++ b/commons-rng-examples/pom.xml
@@ -69,15 +69,21 @@
         <artifactId>commons-rng-client-api</artifactId>
         <version>1.3-SNAPSHOT</version>
       </dependency>
-
-      <dependency>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>exec-maven-plugin</artifactId>
-        <version>1.6.0</version>
-      </dependency>
     </dependencies>
   </dependencyManagement>
 
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>exec-maven-plugin</artifactId>
+          <version>1.6.0</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+
   <modules>
     <module>examples-stress</module>
     <module>examples-sampling</module>

Reply via email to