icap4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.xdob.icap4j</groupId> <artifactId>icap4j</artifactId> <version>0.4.9</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> <groupId>net.xdob.icap4j</groupId> <artifactId>icap4j</artifactId> <version>0.4.9</version> <name>icap4j</name> <description>The ICAP Protocol Codec for Java</description> <url>https://github.com/dibyang/icap4j</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>yangzj</id> <name>Yang zhijian</name> <email>3227817@qq.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/dibyang/icap4j.git</connection> <developerConnection>scm:git:https://github.com/dibyang/icap4j.git</developerConnection> <url>https://github.com/dibyang/icap4j.git</url> </scm> <dependencies> <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.78.Final</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>netty-transport-native-unix-common</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>netty-resolver-dns-native-macos</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>netty-transport-native-kqueue</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>netty-transport-classes-kqueue</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>netty-transport-native-epoll</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>netty-resolver-dns-classes-macos</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>netty-transport-classes-epoll</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>31.0.1-jre</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.21</version> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>