This is an automated email from the ASF dual-hosted git repository.
chrisdutz 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 c5860b198b chore: Cleaned up the no longer needed pcap-shared module
c5860b198b is described below
commit c5860b198b1e82554a7ba23cb550dc887258d712
Author: Christofer Dutz <[email protected]>
AuthorDate: Thu Jul 16 15:45:07 2026 +0200
chore: Cleaned up the no longer needed pcap-shared module
---
plc4j/transports/pcap-shared/pom.xml | 52 --------------------
.../pcap/DefaultPcapTransportConfiguration.java | 57 ----------------------
2 files changed, 109 deletions(-)
diff --git a/plc4j/transports/pcap-shared/pom.xml
b/plc4j/transports/pcap-shared/pom.xml
deleted file mode 100644
index 15c9e3e21b..0000000000
--- a/plc4j/transports/pcap-shared/pom.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- https://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
- -->
-<project xmlns="http://maven.apache.org/POM/4.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.1.0
http://maven.apache.org/xsd/maven-4.1.0.xsd">
-
- <modelVersion>4.1.0</modelVersion>
-
- <parent>
- <groupId>org.apache.plc4x</groupId>
- <artifactId>plc4j-transports</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
-
- <artifactId>plc4j-transports-pcap-shared</artifactId>
-
- <name>PLC4J: Transports: PCAP (shared)</name>
- <description>Base classes used by all transports using libpcap (raw-socket
and pcap-replay).</description>
-
- <properties>
-
<project.build.outputTimestamp>2025-08-02T13:55:11Z</project.build.outputTimestamp>
- </properties>
-
- <dependencies>
- <dependency>
- <groupId>org.apache.plc4x</groupId>
- <artifactId>plc4j-spi</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.apache.plc4x</groupId>
- <artifactId>plc4j-utils-pcap-shared</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
-
-</project>
\ No newline at end of file
diff --git
a/plc4j/transports/pcap-shared/src/main/java/org/apache/plc4x/java/transport/pcap/DefaultPcapTransportConfiguration.java
b/plc4j/transports/pcap-shared/src/main/java/org/apache/plc4x/java/transport/pcap/DefaultPcapTransportConfiguration.java
deleted file mode 100644
index ac3221a8ac..0000000000
---
a/plc4j/transports/pcap-shared/src/main/java/org/apache/plc4x/java/transport/pcap/DefaultPcapTransportConfiguration.java
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * https://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.plc4x.java.transport.pcap;
-
-import
org.apache.plc4x.java.spi.configuration.annotations.ConfigurationParameter;
-import org.apache.plc4x.java.spi.configuration.annotations.Description;
-import
org.apache.plc4x.java.spi.configuration.annotations.defaults.BooleanDefaultValue;
-import
org.apache.plc4x.java.spi.configuration.annotations.defaults.IntDefaultValue;
-
-public abstract class DefaultPcapTransportConfiguration implements
PcapTransportConfiguration {
-
- @ConfigurationParameter("support-vlans")
- @BooleanDefaultValue(false)
- @Description("Should VLan packets be automatically unpacked?")
- private boolean supportVlans;
-
- @ConfigurationParameter("protocol-id")
- @IntDefaultValue(-1)
- @Description("When provided, filters all packets to let only packets
matching this ethernet protocol-id pass.")
- private int protocolId;
-
- @Override
- public boolean getSupportVlans() {
- return supportVlans;
- }
-
- public void setSupportVlans(boolean supportVlans) {
- this.supportVlans = supportVlans;
- }
-
- @Override
- public int getProtocolId() {
- return protocolId;
- }
-
- public void setProtocolId(int protocolId) {
- this.protocolId = protocolId;
- }
-
-}