| | <?xml version="1.0"?> |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | <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/maven-v4_0_0.xsd"> |
| | <modelVersion>4.0.0</modelVersion> |
| | <parent> |
| | <groupId>org.apache.distributedlog</groupId> |
| | <artifactId>distributedlog</artifactId> |
| | <version>4.18.0-SNAPSHOT</version> |
| | </parent> |
| | <artifactId>distributedlog-protocol</artifactId> |
| | <name>Apache BookKeeper :: DistributedLog :: Protocol</name> |
| | <dependencies> |
| | <dependency> |
| | <groupId>org.apache.distributedlog</groupId> |
| | <artifactId>distributedlog-common</artifactId> |
| | <version>${project.version}</version> |
| | </dependency> |
| | <dependency> |
| | <groupId>io.netty</groupId> |
| | <artifactId>netty-buffer</artifactId> |
| | </dependency> |
| | <dependency> |
| | <groupId>org.apache.bookkeeper</groupId> |
| | <artifactId>testtools</artifactId> |
| | <version>${project.parent.version}</version> |
| | <scope>test</scope> |
| | </dependency> |
| | </dependencies> |
| | <build> |
| | <plugins> |
| | <plugin> |
| | <groupId>org.apache.maven.plugins</groupId> |
| | <artifactId>maven-jar-plugin</artifactId> |
| | <executions> |
| | <execution> |
| | <goals> |
| | <goal>test-jar</goal> |
| | </goals> |
| | </execution> |
| | </executions> |
| | </plugin> |
| | <plugin> |
| | <groupId>com.github.spotbugs</groupId> |
| | <artifactId>spotbugs-maven-plugin</artifactId> |
| | </plugin> |
| | </plugins> |
| | </build> |
| | </project> |
| |
|