haystack-agent-kafka-dispatcher
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.expedia.www</groupId> <artifactId>haystack-agent-kafka-dispatcher</artifactId> <version>0.1.18</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>haystack-agent-kafka-dispatcher</artifactId> <parent> <artifactId>haystack-agent-core</artifactId> <groupId>com.expedia.www</groupId> <version>0.1.18</version> <relativePath>../../pom.xml</relativePath> </parent> <properties> <kafka.version>1.1.0</kafka.version> </properties> <dependencies> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka_${scala.major.minor.version}</artifactId> <version>${kafka.version}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.expedia.www</groupId> <artifactId>haystack-agent-api</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.scalatest</groupId> <artifactId>scalatest-maven-plugin</artifactId> <version>1.0</version> <executions> <execution> <id>test</id> <goals> <goal>test</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <archive> <index>true</index> <manifest> <addClasspath>true</addClasspath> </manifest> <manifestEntries> <Application-Name>${project.name}</Application-Name> <Application-Version>${project.version}</Application-Version> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Vendor>Expedia</Implementation-Vendor> <Build-Jdk>${java.version}</Build-Jdk> <Build-Time>${maven.build.timestamp}</Build-Time> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>${project.jdk.version}</source> <target>${project.jdk.version}</target> </configuration> </plugin> </plugins> </build> </project>