2013-05-01 18:31:29 -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">
|
|
|
|
<id>bin</id>
|
2013-05-04 23:04:16 -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-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>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>../examples/target</directory>
|
|
|
|
<includes>
|
|
|
|
<include>druid-examples-*-selfcontained.jar</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>lib</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>../examples/bin/examples</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>examples</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<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>
|