drift-protocol
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.airlift.drift</groupId> <artifactId>drift-protocol</artifactId> <version>1.23</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> <parent> <groupId>io.airlift.drift</groupId> <artifactId>drift-root</artifactId> <version>1.23</version> </parent> <artifactId>drift-protocol</artifactId> <packaging>jar</packaging> <description>Core classes for Drift</description> <properties> <air.main.basedir>${project.parent.basedir}</air.main.basedir> </properties> <dependencies> <dependency> <groupId>io.airlift.drift</groupId> <artifactId>drift-api</artifactId> </dependency> <!-- for testing --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-testng</artifactId> <version>${dep.plugin.surefire.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <licenseSets> <licenseSet> <excludes combine.children="append"> <exclude>src/main/java/io/airlift/drift/protocol/TBinaryProtocol.java</exclude> <exclude>src/main/java/io/airlift/drift/protocol/TCompactProtocol.java</exclude> <exclude>src/main/java/io/airlift/drift/protocol/TFacebookCompactProtocol.java</exclude> </excludes> </licenseSet> </licenseSets> </configuration> </plugin> </plugins> </build> </project>