flux-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.ptgoetz</groupId> <artifactId>flux-examples</artifactId> <version>0.3.0</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/maven-v4_0_0.xsd"> <parent> <artifactId>flux</artifactId> <groupId>com.github.ptgoetz</groupId> <version>0.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.github.ptgoetz</groupId> <artifactId>flux-examples</artifactId> <name>flux-examples</name> <url>https://github.com/ptgoetz/flux</url> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>1.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer /> <transformer> <mainClass>org.apache.storm.flux.Flux</mainClass> </transformer> </transformers> </configuration> </execution> </executions> <configuration> <createDependencyReducedPom>true</createDependencyReducedPom> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.storm</groupId> <artifactId>storm-core</artifactId> <version>0.9.3</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>clojure</artifactId> <groupId>org.clojure</groupId> </exclusion> <exclusion> <artifactId>clj-time</artifactId> <groupId>clj-time</groupId> </exclusion> <exclusion> <artifactId>joda-time</artifactId> <groupId>joda-time</groupId> </exclusion> <exclusion> <artifactId>compojure</artifactId> <groupId>compojure</groupId> </exclusion> <exclusion> <artifactId>core.incubator</artifactId> <groupId>org.clojure</groupId> </exclusion> <exclusion> <artifactId>tools.macro</artifactId> <groupId>org.clojure</groupId> </exclusion> <exclusion> <artifactId>clout</artifactId> <groupId>clout</groupId> </exclusion> <exclusion> <artifactId>ring-core</artifactId> <groupId>ring</groupId> </exclusion> <exclusion> <artifactId>commons-fileupload</artifactId> <groupId>commons-fileupload</groupId> </exclusion> <exclusion> <artifactId>hiccup</artifactId> <groupId>hiccup</groupId> </exclusion> <exclusion> <artifactId>ring-devel</artifactId> <groupId>ring</groupId> </exclusion> <exclusion> <artifactId>clj-stacktrace</artifactId> <groupId>clj-stacktrace</groupId> </exclusion> <exclusion> <artifactId>ring-jetty-adapter</artifactId> <groupId>ring</groupId> </exclusion> <exclusion> <artifactId>ring-servlet</artifactId> <groupId>ring</groupId> </exclusion> <exclusion> <artifactId>tools.logging</artifactId> <groupId>org.clojure</groupId> </exclusion> <exclusion> <artifactId>math.numeric-tower</artifactId> <groupId>org.clojure</groupId> </exclusion> <exclusion> <artifactId>tools.cli</artifactId> <groupId>org.clojure</groupId> </exclusion> <exclusion> <artifactId>commons-exec</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>json-simple</artifactId> <groupId>com.googlecode.json-simple</groupId> </exclusion> <exclusion> <artifactId>carbonite</artifactId> <groupId>com.twitter</groupId> </exclusion> <exclusion> <artifactId>kryo</artifactId> <groupId>com.esotericsoftware.kryo</groupId> </exclusion> <exclusion> <artifactId>reflectasm</artifactId> <groupId>com.esotericsoftware.reflectasm</groupId> </exclusion> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>minlog</artifactId> <groupId>com.esotericsoftware.minlog</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> <exclusion> <artifactId>chill-java</artifactId> <groupId>com.twitter</groupId> </exclusion> <exclusion> <artifactId>snakeyaml</artifactId> <groupId>org.yaml</groupId> </exclusion> <exclusion> <artifactId>disruptor</artifactId> <groupId>com.googlecode.disruptor</groupId> </exclusion> <exclusion> <artifactId>jgrapht-core</artifactId> <groupId>org.jgrapht</groupId> </exclusion> <exclusion> <artifactId>logback-classic</artifactId> <groupId>ch.qos.logback</groupId> </exclusion> <exclusion> <artifactId>logback-core</artifactId> <groupId>ch.qos.logback</groupId> </exclusion> <exclusion> <artifactId>log4j-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>jline</artifactId> <groupId>jline</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka_2.10</artifactId> <version>0.8.1.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>zookeeper</artifactId> <groupId>org.apache.zookeeper</groupId> </exclusion> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> <exclusion> <artifactId>metrics-core</artifactId> <groupId>com.yammer.metrics</groupId> </exclusion> <exclusion> <artifactId>jopt-simple</artifactId> <groupId>net.sf.jopt-simple</groupId> </exclusion> <exclusion> <artifactId>scala-library</artifactId> <groupId>org.scala-lang</groupId> </exclusion> <exclusion> <artifactId>zkclient</artifactId> <groupId>com.101tec</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>