kafka-stream
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fr.jetoile.hadoop</groupId> <artifactId>kafka-stream</artifactId> <version>3.8</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"> <parent> <artifactId>sample</artifactId> <groupId>fr.jetoile.hadoop</groupId> <version>3.8</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>kafka-stream</artifactId> <dependencies> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-streams</artifactId> <version>${kafka_2.11.version}</version> <exclusions> <exclusion> <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>fr.jetoile.hadoop</groupId> <artifactId>hadoop-unit-commons</artifactId> </dependency> <dependency> <groupId>fr.jetoile.hadoop</groupId> <artifactId>hadoop-unit-client-kafka</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>fr.jetoile.hadoop</groupId> <artifactId>hadoop-unit-kafka</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>fr.jetoile.hadoop</groupId> <artifactId>hadoop-unit-client-commons</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> <property> <name>!travis</name> </property> </activation> <build> <plugins> <plugin> <artifactId>hadoop-unit-maven-plugin</artifactId> <groupId>fr.jetoile.hadoop</groupId> <version>${hadoop-unit.version}</version> <executions> <execution> <id>start</id> <goals> <goal>embedded-start</goal> </goals> <phase>pre-integration-test</phase> </execution> <execution> <id>embedded-stop</id> <goals> <goal>embedded-stop</goal> </goals> <phase>post-integration-test</phase> </execution> </executions> <configuration> <components> <componentArtifact implementation="fr.jetoile.hadoopunit.ComponentArtifact"> <componentName>ZOOKEEPER</componentName> <artifactId>hadoop-unit-zookeeper</artifactId> <groupId>fr.jetoile.hadoop</groupId> <version>${hadoop-unit.version}</version> <mainClass>fr.jetoile.hadoopunit.component.ZookeeperBootstrap</mainClass></componentArtifact> <componentArtifact implementation="fr.jetoile.hadoopunit.ComponentArtifact"> <componentName>KAFKA</componentName> <artifactId>hadoop-unit-kafka</artifactId> <groupId>fr.jetoile.hadoop</groupId> <version>${hadoop-unit.version}</version> <mainClass>fr.jetoile.hadoopunit.component.KafkaBootstrap</mainClass> </componentArtifact> </components> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>travis</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>travis</name> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>