streams-runtime
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.sfb876</groupId>
<artifactId>streams-runtime</artifactId>
<version>1.0.10</version>
</dependency><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>
<artifactId>streams</artifactId>
<groupId>de.sfb876</groupId>
<version>1.0.10</version>
<relativePath>..</relativePath>
</parent>
<name>streams-runtime</name>
<artifactId>streams-runtime</artifactId>
<dependencies>
<dependency>
<groupId>de.sfb876</groupId>
<artifactId>streams-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>[1.5.8,1.8.0-alpha)</version>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.2.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>[2.1.1,)</version>
</dependency>
</dependencies>
<developers>
<developer>
<name>Christian Bockermann</name>
<email>christian.bockermann@cs.uni-dortmund.de</email>
<organization>Informatik LS8, TU-Dortmund</organization>
<organizationUrl>http://www-ai.cs.uni-dortmund.de</organizationUrl>
<timezone>+1</timezone>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<inherited>true</inherited>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>stream</finalName>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>stream.run</mainClass>
</manifest>
<manifestEntries>
<Quantiles-Version>${project.version}</Quantiles-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- This profile can be used to produce JAR file that can be used to
run locally and transform streams XML configuration into a valid storm topology.
It contains 'storm' itself to run StormSubmitter. -->
<id>
standalone
</id>
<activation>
<property>
<name>standalone</name>
<value>true</value>
</property>
</activation>
<dependencies>
<dependency>
<groupId>de.sfb876</groupId>
<artifactId>streams-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<finalName>streams</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<filters>
<filter>
<artifact>log4j:log4j</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Implementation-Vendor>Christian Bockermann
</Implementation-Vendor>
<Implementation-Title>streams-runtime</Implementation-Title>
<Implementation-URL>http://www.jwall.org/streams/
</Implementation-URL>
<Implementation-Version>${project.version}
</Implementation-Version>
<Implementation-Revision>${project.version}
</Implementation-Revision>
<Specification-Title>streams-runtime</Specification-Title>
<Specification-Version>1.0</Specification-Version>
<main-class>stream.run</main-class>
</manifestEntries>
</transformer>
</transformers>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>