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/incubator-plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 98fca57  - Disabled the deployment of all c++ modules as well as the 
examples.
98fca57 is described below

commit 98fca57e734b85bfba885b1b4654051a775bc89f
Author: Christofer Dutz <christofer.d...@c-ware.de>
AuthorDate: Sat Jan 26 10:45:01 2019 +0100

    - Disabled the deployment of all c++ modules as well as the examples.
---
 examples/pom.xml    | 15 +++++++++++++++
 plc4cpp/api/pom.xml |  2 +-
 plc4cpp/pom.xml     | 18 +++++++++++++-----
 3 files changed, 29 insertions(+), 6 deletions(-)

diff --git a/examples/pom.xml b/examples/pom.xml
index 19d3751..2b32779 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -63,6 +63,21 @@
     </dependencies>
   </dependencyManagement>
 
+  <build>
+    <pluginManagement>
+      <plugins>
+        <!-- No need to deploy examples in a maven repo -->
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-deploy-plugin</artifactId>
+          <configuration>
+            <skip>true</skip>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+
   <profiles>
     <profile>
       <id>build-executable-jars</id>
diff --git a/plc4cpp/api/pom.xml b/plc4cpp/api/pom.xml
index 7d93541..bae9ed3 100644
--- a/plc4cpp/api/pom.xml
+++ b/plc4cpp/api/pom.xml
@@ -34,7 +34,7 @@
 
   <build>
     <!-- This is probably not required, however it helps IntelliJ detect the 
files as sources -->
-    <sourceDirectory>${project.basedir}/src/main/cpp</sourceDirectory>
+    <sourceDirectory>src/main/cpp</sourceDirectory>
   </build>
 
   <dependencies>
diff --git a/plc4cpp/pom.xml b/plc4cpp/pom.xml
index e6811f8..5673ab0 100644
--- a/plc4cpp/pom.xml
+++ b/plc4cpp/pom.xml
@@ -49,27 +49,35 @@
   <build>
     <pluginManagement>
       <plugins>
-        <plugin>
+        <!--plugin>
           <groupId>com.buschmais.jqassistant</groupId>
           <artifactId>jqassistant-maven-plugin</artifactId>
           <configuration>
             <skip>true</skip>
           </configuration>
-        </plugin>
-        <plugin>
+        </plugin-->
+        <!--plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-assembly-plugin</artifactId>
           <version>3.1.0</version>
           <configuration>
             <skipAssembly>true</skipAssembly>
           </configuration>
-        </plugin>
-        <plugin>
+        </plugin-->
+        <!--plugin>
           <groupId>org.apache.rat</groupId>
           <artifactId>apache-rat-plugin</artifactId>
           <configuration>
             <skip>true</skip>
           </configuration>
+        </plugin-->
+        <!-- As the resulting libraries are highly platform dependent, it 
doesn't make sense do deploy them -->
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-deploy-plugin</artifactId>
+          <configuration>
+            <skip>true</skip>
+          </configuration>
         </plugin>
       </plugins>
     </pluginManagement>

Reply via email to