2013-07-01 19:36:30 -04:00
|
|
|
<?xml version="1.0"?>
|
2013-09-13 21:41:33 -04:00
|
|
|
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
|
2013-05-01 18:31:29 -04:00
|
|
|
<id>bin</id>
|
2013-07-01 19:36:30 -04:00
|
|
|
<formats>
|
|
|
|
<format>tar.gz</format>
|
|
|
|
</formats>
|
2013-05-01 18:31:29 -04:00
|
|
|
<fileSets>
|
|
|
|
<fileSet>
|
2013-05-04 23:04:16 -04:00
|
|
|
<directory>../examples/config</directory>
|
2013-05-01 18:31:29 -04:00
|
|
|
<includes>
|
2013-05-04 23:04:16 -04:00
|
|
|
<include>*</include>
|
2013-05-01 18:31:29 -04:00
|
|
|
</includes>
|
2013-05-04 23:04:16 -04:00
|
|
|
<outputDirectory>config</outputDirectory>
|
2013-05-01 18:31:29 -04:00
|
|
|
</fileSet>
|
2013-07-01 19:36:30 -04:00
|
|
|
<fileSet>
|
|
|
|
<directory>../examples/config/broker</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>config/broker</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
2013-10-03 13:54:25 -04:00
|
|
|
<directory>../examples/config/coordinator</directory>
|
2013-07-01 19:36:30 -04:00
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
2013-10-03 13:54:25 -04:00
|
|
|
<outputDirectory>config/coordinator</outputDirectory>
|
2013-07-01 19:36:30 -04:00
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>../examples/config/realtime</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>config/realtime</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
2013-10-03 13:54:25 -04:00
|
|
|
<directory>../examples/config/historical</directory>
|
2013-07-01 19:36:30 -04:00
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
2013-10-03 13:54:25 -04:00
|
|
|
<outputDirectory>config/historical</outputDirectory>
|
2013-07-01 19:36:30 -04:00
|
|
|
</fileSet>
|
2013-05-02 17:35:06 -04:00
|
|
|
<fileSet>
|
2013-05-04 23:04:16 -04:00
|
|
|
<directory>../examples/bin</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*sh</include>
|
|
|
|
</includes>
|
|
|
|
<fileMode>744</fileMode>
|
|
|
|
<outputDirectory>/</outputDirectory>
|
2013-07-01 19:36:30 -04:00
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
2013-05-04 23:04:16 -04:00
|
|
|
<directory>../examples/bin/examples</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>examples</outputDirectory>
|
|
|
|
</fileSet>
|
2013-07-01 19:36:30 -04:00
|
|
|
<fileSet>
|
2013-05-04 23:04:16 -04:00
|
|
|
<directory>../examples/bin/examples/twitter</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*sh</include>
|
|
|
|
</includes>
|
|
|
|
<fileMode>744</fileMode>
|
|
|
|
<outputDirectory>examples/twitter</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>../</directory>
|
2013-05-01 18:31:29 -04:00
|
|
|
<includes>
|
2013-05-02 17:35:06 -04:00
|
|
|
<include>LICENSE</include>
|
2013-05-01 18:31:29 -04:00
|
|
|
</includes>
|
2013-05-02 17:35:06 -04:00
|
|
|
</fileSet>
|
|
|
|
</fileSets>
|
|
|
|
<dependencySets>
|
|
|
|
<dependencySet>
|
|
|
|
<useProjectArtifact>true</useProjectArtifact>
|
|
|
|
<useTransitiveDependencies>true</useTransitiveDependencies>
|
2013-05-04 23:04:16 -04:00
|
|
|
<outputDirectory>lib</outputDirectory>
|
2013-05-02 17:35:06 -04:00
|
|
|
</dependencySet>
|
|
|
|
</dependencySets>
|
2013-05-04 23:04:16 -04:00
|
|
|
</assembly>
|