Repository: incubator-beam Updated Branches: refs/heads/master e43a38355 -> 503b40717
fixup! Add script Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/cd5eca8d Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/cd5eca8d Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/cd5eca8d Branch: refs/heads/master Commit: cd5eca8df1d38a1c8ab2a44581bc0272b20bf609 Parents: 1e132ee Author: Kenneth Knowles <[email protected]> Authored: Thu Nov 10 12:53:15 2016 -0800 Committer: Kenneth Knowles <[email protected]> Committed: Thu Nov 10 14:06:39 2016 -0800 ---------------------------------------------------------------------- .../update-examples-archetype.sh | 26 +++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/cd5eca8d/sdks/java/maven-archetypes/update-examples-archetype.sh ---------------------------------------------------------------------- diff --git a/sdks/java/maven-archetypes/update-examples-archetype.sh b/sdks/java/maven-archetypes/update-examples-archetype.sh index e61c916..3c222be 100755 --- a/sdks/java/maven-archetypes/update-examples-archetype.sh +++ b/sdks/java/maven-archetypes/update-examples-archetype.sh @@ -1,8 +1,32 @@ -#!/bin/bash -ex +#!/bin/bash -e +# +# 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. +# +# Updates the examples archetype to match the examples module +# +# Usage: Invoke with no arguments from any working directory. + +# The directory of this script. Assumes root of the maven-archetypes module. HERE="$(dirname $0)" +# The directory of the examples-java module EXAMPLES_ROOT="${HERE}/../../../examples/java" + +# The root of the examples archetype ARCHETYPE_ROOT="${HERE}/examples/src/main/resources/archetype-resources" #
