Repository: incubator-tamaya Updated Branches: refs/heads/master 1b469982e -> 642f6b324
TAMAYA-314: Fix build warning while building assembly Do not use SLASH but project basedirectory. Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/642f6b32 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/642f6b32 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/642f6b32 Branch: refs/heads/master Commit: 642f6b3247f45300cce04149075a43cea4d96457 Parents: 1b46998 Author: Phil Ottlinger <[email protected]> Authored: Thu Oct 5 00:01:07 2017 +0200 Committer: Phil Ottlinger <[email protected]> Committed: Thu Oct 5 00:01:07 2017 +0200 ---------------------------------------------------------------------- distribution/src/main/assembly/distribution-src.xml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/642f6b32/distribution/src/main/assembly/distribution-src.xml ---------------------------------------------------------------------- diff --git a/distribution/src/main/assembly/distribution-src.xml b/distribution/src/main/assembly/distribution-src.xml index 83113c7..986fdeb 100644 --- a/distribution/src/main/assembly/distribution-src.xml +++ b/distribution/src/main/assembly/distribution-src.xml @@ -20,18 +20,15 @@ under the License. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd"> - <id>distribution-src</id> <formats> <format>dir</format> <format>zip</format> <format>tar.gz</format> </formats> - <fileSets> <fileSet> <directory>${project.parent.basedir}</directory> - <excludes> <exclude>**/target/**</exclude> <exclude>**/*.iml</exclude> <!-- IntelliJ IDEA module file --> @@ -43,11 +40,9 @@ under the License. <exclude>**/pom.xml.releaseBackup</exclude> <exclude>release.properties</exclude> </excludes> - <includes> </includes> - <outputDirectory>/</outputDirectory> + <outputDirectory>${project.basedir}</outputDirectory> </fileSet> </fileSets> - </assembly>
