kraken-telnet-decoder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>kraken-telnet-decoder</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>kraken-pcap-pom</artifactId>
<groupId>com.github.zhkl0228</groupId>
<version>1.0.0</version>
</parent>
<artifactId>kraken-telnet-decoder</artifactId>
<packaging>bundle</packaging>
<name>Kraken Telnet Decoder</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>org.krakenapps.pcap.decoder.telnet</Bundle-SymbolicName>
<Export-Package>org.krakenapps.pcap.decoder.telnet;version=${project.version}</Export-Package>
<Import-Package>*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>kraken-pcap</artifactId>
</dependency>
</dependencies>
</project>