Repository: bahir Updated Branches: refs/heads/master 2dfcd08d1 -> 13b127593
[BAHIR-19] Create source distribution assembly Add assemblie to create Bahir source release distribution Project: http://git-wip-us.apache.org/repos/asf/bahir/repo Commit: http://git-wip-us.apache.org/repos/asf/bahir/commit/13b12759 Tree: http://git-wip-us.apache.org/repos/asf/bahir/tree/13b12759 Diff: http://git-wip-us.apache.org/repos/asf/bahir/diff/13b12759 Branch: refs/heads/master Commit: 13b127593e79debfbc97a9c1215198c780df50a4 Parents: 2dfcd08 Author: Luciano Resende <[email protected]> Authored: Sat Jun 25 23:58:38 2016 -0700 Committer: Luciano Resende <[email protected]> Committed: Sat Jun 25 23:58:38 2016 -0700 ---------------------------------------------------------------------- distribution/pom.xml | 93 +++++++++++++++++++++++++++++ distribution/src/main/assembly/src.xml | 50 ++++++++++++++++ pom.xml | 8 +++ 3 files changed, 151 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bahir/blob/13b12759/distribution/pom.xml ---------------------------------------------------------------------- diff --git a/distribution/pom.xml b/distribution/pom.xml new file mode 100644 index 0000000..295c3af --- /dev/null +++ b/distribution/pom.xml @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one or more + ~ contributor license agreements. See the NOTICE file distributed with + ~ this work for additional information regarding copyright ownership. + ~ The ASF licenses this file to You under the Apache License, Version 2.0 + ~ (the "License"); you may not use this file except in compliance with + ~ the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<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> + <groupId>org.apache.bahir</groupId> + <artifactId>bahir-parent_2.11</artifactId> + <version>2.0.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <groupId>org.apache.bahir</groupId> + <artifactId>assembly_2.11</artifactId> + <packaging>pom</packaging> + <name>Apache Bahir - Release Distributions</name> + <url>http://bahir.apache.org/</url> + + <dependencies> + <dependency> + <groupId>org.apache.bahir</groupId> + <artifactId>spark-streaming-akka_${scala.binary.version}</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.bahir</groupId> + <artifactId>spark-streaming-mqtt_${scala.binary.version}</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.bahir</groupId> + <artifactId>spark-streaming-twitter_${scala.binary.version}</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.bahir</groupId> + <artifactId>spark-streaming-zeromq_${scala.binary.version}</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <inherited>false</inherited> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <tarLongFileMode>gnu</tarLongFileMode> + </configuration> + <executions> + <execution> + <id>create-distributions</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <descriptors> + <descriptor>src/main/assembly/src.xml</descriptor> + </descriptors> + <appendAssemblyId>false</appendAssemblyId> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> + <inherited>false</inherited> + <groupId>org.scalastyle</groupId> + <artifactId>scalastyle-maven-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> +</project> http://git-wip-us.apache.org/repos/asf/bahir/blob/13b12759/distribution/src/main/assembly/src.xml ---------------------------------------------------------------------- diff --git a/distribution/src/main/assembly/src.xml b/distribution/src/main/assembly/src.xml new file mode 100644 index 0000000..852fcb5 --- /dev/null +++ b/distribution/src/main/assembly/src.xml @@ -0,0 +1,50 @@ +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one or more + ~ contributor license agreements. See the NOTICE file distributed with + ~ this work for additional information regarding copyright ownership. + ~ The ASF licenses this file to You under the Apache License, Version 2.0 + ~ (the "License"); you may not use this file except in compliance with + ~ the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<assembly> + <id>src</id> + + <formats> + <format>tar.gz</format> + <format>zip</format> + </formats> + + <includeBaseDirectory>true</includeBaseDirectory> + <baseDirectory>bahir-${version}-src</baseDirectory> + + <fileSets> + <fileSet> + <directory>..</directory> + <outputDirectory></outputDirectory> + <excludes> + <exclude>**/.*</exclude> + <exclude>**/.*/**</exclude> + <exclude>**/*.log</exclude> + <exclude>**/*.iml</exclude> + <exclude>**/conf/*.properties</exclude> + <exclude>**/conf/*.xml</exclude> + <exclude>**/dependency-reduced-pom.xml</exclude> + <exclude>**/scratch_space</exclude> + <exclude>**/scratch_space/**/*</exclude> + <exclude>**/target</exclude> + <exclude>**/target/**/*</exclude> + <exclude>**/temp</exclude> + <exclude>**/temp/**/*</exclude> + </excludes> + </fileSet> + </fileSets> + +</assembly> http://git-wip-us.apache.org/repos/asf/bahir/blob/13b12759/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 9488898..45d697d 100644 --- a/pom.xml +++ b/pom.xml @@ -917,6 +917,14 @@ <profiles> <profile> + <id>distribution</id> + + <modules> + <module>distribution</module> + </modules> + </profile> + + <profile> <id>doclint-java8-disable</id> <activation> <jdk>[1.8,)</jdk>
