Repository: incubator-unomi Updated Branches: refs/heads/master 018e6d5d3 -> 6aa29bf9c
- Fixed path in package project to make sure the LICENSE,README and NOTICE files are included - Added a script file to easy the generation of the package from the command line. Project: http://git-wip-us.apache.org/repos/asf/incubator-unomi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-unomi/commit/6aa29bf9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-unomi/tree/6aa29bf9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-unomi/diff/6aa29bf9 Branch: refs/heads/master Commit: 6aa29bf9c31f3dd6a0156e5be1e7be0ca5561290 Parents: 018e6d5 Author: Serge Huber <[email protected]> Authored: Fri Nov 27 14:41:04 2015 +0100 Committer: Serge Huber <[email protected]> Committed: Fri Nov 27 14:41:04 2015 +0100 ---------------------------------------------------------------------- generate-package.sh | 22 ++++++++++++++++++++++ package/pom.xml | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-unomi/blob/6aa29bf9/generate-package.sh ---------------------------------------------------------------------- diff --git a/generate-package.sh b/generate-package.sh new file mode 100755 index 0000000..245aa54 --- /dev/null +++ b/generate-package.sh @@ -0,0 +1,22 @@ +#!/bin/sh +################################################################################ +# +# 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. +# +################################################################################ +echo Building... +mvn clean install -P generate-package,integration-tests,performance-tests,rat +echo Package building completed. http://git-wip-us.apache.org/repos/asf/incubator-unomi/blob/6aa29bf9/package/pom.xml ---------------------------------------------------------------------- diff --git a/package/pom.xml b/package/pom.xml index 6e34bb9..097f6fe 100644 --- a/package/pom.xml +++ b/package/pom.xml @@ -91,7 +91,7 @@ <build> <resources> <resource> - <directory>${project.basedir}/../..</directory> + <directory>${project.basedir}/..</directory> <filtering>false</filtering> <includes> <include>README*</include>
