camellia-redis-proxy-mq-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.netease.nim</groupId> <artifactId>camellia-redis-proxy-mq-common</artifactId> <version>1.1.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>camellia-redis-proxy-mq-common</artifactId> <version>1.1.3</version> <parent> <groupId>com.netease.nim</groupId> <artifactId>camellia-redis-proxy-mq</artifactId> <version>1.1.3</version> </parent> <dependencies> <dependency> <groupId>com.netease.nim</groupId> <artifactId>camellia-redis-proxy</artifactId> <version>1.1.3</version> </dependency> <!-- https://mvnrepository.com/artifact/org.msgpack/msgpack-core --> <dependency> <groupId>org.msgpack</groupId> <artifactId>msgpack-core</artifactId> <version>${msgpack.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>