Repository: flink Updated Branches: refs/heads/master 297d75c2e -> fce64e193
[FLINK-4031] include sources in Maven snapshot deployment This closes #2082 Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/fce64e19 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/fce64e19 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/fce64e19 Branch: refs/heads/master Commit: fce64e193e32c9f639755f5b57222e6d7e89f150 Parents: 297d75c Author: Maximilian Michels <[email protected]> Authored: Thu Jun 9 09:29:26 2016 +0200 Committer: Maximilian Michels <[email protected]> Committed: Wed Jun 8 18:31:45 2016 +0200 ---------------------------------------------------------------------- tools/deploy_to_maven.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/fce64e19/tools/deploy_to_maven.sh ---------------------------------------------------------------------- diff --git a/tools/deploy_to_maven.sh b/tools/deploy_to_maven.sh index ff2bb26..0a3ee67 100755 --- a/tools/deploy_to_maven.sh +++ b/tools/deploy_to_maven.sh @@ -92,7 +92,7 @@ if [[ $CURRENT_FLINK_VERSION == *SNAPSHOT* ]] ; then # Deploy hadoop v1 to maven echo "Generating poms for hadoop1" ./tools/generate_specific_pom.sh $CURRENT_FLINK_VERSION $CURRENT_FLINK_VERSION_HADOOP1 pom.hadoop1.xml - mvn -B -f pom.hadoop1.xml -DskipTests -Drat.ignoreErrors=true deploy --settings deploysettings.xml + mvn -B -f pom.hadoop1.xml -DskipTests -Drat.ignoreErrors=true -Pdocs-and-source deploy --settings deploysettings.xml # deploy to s3 deploy_to_s3 $CURRENT_FLINK_VERSION "hadoop1" @@ -101,13 +101,13 @@ if [[ $CURRENT_FLINK_VERSION == *SNAPSHOT* ]] ; then echo "deploy standard version (hadoop2) for scala 2.10" # hadoop2 scala 2.10 - mvn -B -DskipTests -Drat.skip=true -Drat.ignoreErrors=true clean deploy --settings deploysettings.xml + mvn -B -DskipTests -Drat.skip=true -Drat.ignoreErrors=true -Pdocs-and-source clean deploy --settings deploysettings.xml deploy_to_s3 $CURRENT_FLINK_VERSION "hadoop2" echo "deploy hadoop2 version (standard) for scala 2.11" ./tools/change-scala-version.sh 2.11 - mvn -B -DskipTests -Drat.skip=true -Drat.ignoreErrors=true clean deploy --settings deploysettings.xml + mvn -B -DskipTests -Drat.skip=true -Drat.ignoreErrors=true -Pdocs-and-source clean deploy --settings deploysettings.xml deploy_to_s3 $CURRENT_FLINK_VERSION "hadoop2_2.11"
