Repository: zeppelin Updated Branches: refs/heads/master 02daea1c5 -> 764fef58c
[ZEPPELIN-3025] Windows Build Error ### What is this PR for? When i try to build Zeppelin from apache master repo on Windows 10 i get this error: ```bash [ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.8:copy (copy-artifact) on project zeppelin-interpreter: Error copying artifact from C:\Users\Andrea\workspace_zeppelin\zeppelin-master\zeppelin-interpreter\target\zeppelin-interpreter-0.8.0-SNAPSHOT.jar to C:\Users\Andrea\workspace_zeppelin\zeppelin-master\zeppelin-interpreter\interpreter\Zeppelin: Interpreter\zeppelin-interpreter-0.8.0-SNAPSHOT.jar ``` ### What type of PR is it? [Bug Fix] ### Todos * [x] - Change build dir ### What is the Jira issue? [ZEPPELIN-3025](https://issues.apache.org/jira/browse/ZEPPELIN-3025) ### How should this be tested? * Build the project in Windows env ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: Andrea Santurbano <[email protected]> Closes #2646 from conker84/winbuild and squashes the following commits: ad7898b [Andrea Santurbano] Merge branch 'winbuild' of https://github.com/conker84/zeppelin into winbuild 67ae551 [Andrea Santurbano] clean c4d49f9 [Andrea Santurbano] review by zjffdu 96f8384 [Andrea Santurbano] Changet folder name in order to allow windows builds d8c360a [Andrea Santurbano] clean 55c4a9d [Andrea Santurbano] review by zjffdu 66e77b9 [Andrea Santurbano] Changet folder name in order to allow windows builds Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/764fef58 Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/764fef58 Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/764fef58 Branch: refs/heads/master Commit: 764fef58c9c9ed343348addef3f8345eb698f4eb Parents: 02daea1 Author: Andrea Santurbano <[email protected]> Authored: Sat Nov 4 08:50:38 2017 +0100 Committer: Jeff Zhang <[email protected]> Committed: Mon Nov 6 08:52:19 2017 +0800 ---------------------------------------------------------------------- zeppelin-interpreter/pom.xml | 58 --------------------------------------- 1 file changed, 58 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/764fef58/zeppelin-interpreter/pom.xml ---------------------------------------------------------------------- diff --git a/zeppelin-interpreter/pom.xml b/zeppelin-interpreter/pom.xml index 3bb50c7..b0fd992 100644 --- a/zeppelin-interpreter/pom.xml +++ b/zeppelin-interpreter/pom.xml @@ -241,7 +241,6 @@ <build> <pluginManagement> <plugins> - <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> @@ -251,63 +250,6 @@ </execution> </executions> </plugin> - - <plugin> - <artifactId>maven-dependency-plugin</artifactId> - <executions> - <execution> - <id>copy-dependencies</id> - <phase>package</phase> - <goals> - <goal>copy-dependencies</goal> - </goals> - <configuration> - <outputDirectory>${basedir}/interpreter/${project.name}</outputDirectory> - <overWriteReleases>false</overWriteReleases> - <overWriteSnapshots>false</overWriteSnapshots> - <overWriteIfNewer>true</overWriteIfNewer> - <includeScope>runtime</includeScope> - </configuration> - </execution> - <execution> - <id>copy-artifact</id> - <phase>package</phase> - <goals> - <goal>copy</goal> - </goals> - <configuration> - <outputDirectory>${basedir}/interpreter/${project.name}</outputDirectory> - <overWriteReleases>false</overWriteReleases> - <overWriteSnapshots>false</overWriteSnapshots> - <overWriteIfNewer>true</overWriteIfNewer> - <artifactItems> - <artifactItem> - <groupId>${project.groupId}</groupId> - <artifactId>${project.artifactId}</artifactId> - <version>${project.version}</version> - <type>${project.packaging}</type> - </artifactItem> - </artifactItems> - </configuration> - </execution> - </executions> - </plugin> - - <plugin> - <artifactId>maven-resources-plugin</artifactId> - <executions> - <execution> - <id>copy-resources</id> - <phase>package</phase> - <goals> - <goal>resources</goal> - </goals> - <configuration> - <outputDirectory>${basedir}/interpreter/{project.name}</outputDirectory> - </configuration> - </execution> - </executions> - </plugin> </plugins> </pluginManagement> </build>
