You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2020/05/27 13:29:59 UTC

[plc4x] branch develop updated: - Diabled the enforcer plugin for the sandbox

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

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new ad35755  - Diabled the enforcer plugin for the sandbox
ad35755 is described below

commit ad35755e46467466a2435ba1c3a8fac686cba84e
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Wed May 27 15:29:52 2020 +0200

    - Diabled the enforcer plugin for the sandbox
---
 sandbox/pom.xml                                   | 15 ++++++++++++++-
 sandbox/test-streampipes-plc4x-processors/pom.xml | 22 ----------------------
 2 files changed, 14 insertions(+), 23 deletions(-)

diff --git a/sandbox/pom.xml b/sandbox/pom.xml
index cf6cc74..98b9092 100644
--- a/sandbox/pom.xml
+++ b/sandbox/pom.xml
@@ -17,7 +17,8 @@
   specific language governing permissions and limitations
   under the License.
   -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 
   <modelVersion>4.0.0</modelVersion>
 
@@ -50,6 +51,18 @@
     <module>hello-influx-data-collection</module>
   </modules>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-enforcer-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
   <dependencies>
     <!-- JUnit 5 Support -->
     <dependency>
diff --git a/sandbox/test-streampipes-plc4x-processors/pom.xml b/sandbox/test-streampipes-plc4x-processors/pom.xml
index b0fb489..59dd26e 100644
--- a/sandbox/test-streampipes-plc4x-processors/pom.xml
+++ b/sandbox/test-streampipes-plc4x-processors/pom.xml
@@ -47,28 +47,6 @@
           </execution>
         </executions>
       </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-enforcer-plugin</artifactId>
-        <version>3.0.0-M2</version> <!--$NO-MVN-MAN-VER$-->
-        <executions>
-          <!--
-            For some strange reason it keeps on complaining about classes in commons-codec,
-            which is no longer contained in any dependencies.
-          -->
-          <execution>
-            <id>enforce-ban-duplicate-classes</id>
-            <phase>validate</phase>
-            <goals>
-              <goal>enforce</goal>
-            </goals>
-            <configuration combine.children="append">
-              <skip>true</skip>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
     </plugins>
   </build>