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 2018/01/26 10:38:17 UTC

[incubator-plc4x] 04/04: - Fixed dependency plugin finding

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

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

commit a25f5e69b926e43ad302733d0dd24bc528fb1795
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Fri Jan 26 11:38:09 2018 +0100

    - Fixed dependency plugin finding
---
 plc4j/utils/raw-sockets/pom.xml | 19 +++++++------------
 pom.xml                         |  6 ++++++
 2 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/plc4j/utils/raw-sockets/pom.xml b/plc4j/utils/raw-sockets/pom.xml
index b5d2d4a..31e485f 100644
--- a/plc4j/utils/raw-sockets/pom.xml
+++ b/plc4j/utils/raw-sockets/pom.xml
@@ -35,11 +35,11 @@
   <description>An implementation of a Netty Channel that allows implementing protocols below the TCP and UCP level.</description>
 
   <properties>
-    <pcap4j.vewrsion>1.7.3</pcap4j.vewrsion>
+    <pcap4j.version>1.7.3</pcap4j.version>
   </properties>
 
   <dependencies>
-    <dependency>
+    <!--dependency>
       <groupId>org.apache.plc4x</groupId>
       <artifactId>plc4j-api</artifactId>
       <version>0.0.1-SNAPSHOT</version>
@@ -48,28 +48,23 @@
     <dependency>
       <groupId>io.netty</groupId>
       <artifactId>netty-transport</artifactId>
-    </dependency>
+    </dependency-->
 
     <dependency>
       <groupId>org.pcap4j</groupId>
       <artifactId>pcap4j-core</artifactId>
-      <version>${pcap4j.vewrsion}</version>
+      <version>${pcap4j.version}</version>
     </dependency>
-    <dependency>
+    <!--dependency>
       <groupId>org.pcap4j</groupId>
       <artifactId>pcap4j-packetfactory-static</artifactId>
-      <version>${pcap4j.vewrsion}</version>
-    </dependency>
+      <version>${pcap4j.version}</version>
+    </dependency-->
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
     </dependency>
-    <dependency>
-      <groupId>ch.qos.logback</groupId>
-      <artifactId>logback-classic</artifactId>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 
 </project>
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 9e69dde..d1a955a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -887,6 +887,11 @@
           <groupId>org.slf4j</groupId>
           <artifactId>slf4j-api</artifactId>
         </dependency>
+        <dependency>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+          <scope>test</scope>
+        </dependency>
 
         <dependency>
           <groupId>org.junit.jupiter</groupId>
@@ -970,6 +975,7 @@
                     <ignoredDependency>org.junit.*:*</ignoredDependency>
                     <ignoredDependency>org.mockito:mockito-core</ignoredDependency>
                     <ignoredDependency>org.slf4j:slf4j-api</ignoredDependency>
+                    <ignoredDependency>ch.qos.logback:logback-classic</ignoredDependency>
                   </ignoredDependencies>
                 </configuration>
               </execution>

-- 
To stop receiving notification emails like this one, please contact
cdutz@apache.org.