forked from apache/zeppelin
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ZEPPELIN-5819] Configures ivy to download jar libraries only from re…
…mote ### What is this PR for? Configures ivy to download jar libraries only from remote and ignore local jars ### What type of PR is it? * Hot Fix ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-5819 ### How should this be tested? * CI ### Questions: * Does the licenses files need to update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: Philipp Dallig <[email protected]> Closes apache#4495 from Reamer/ivy_download and squashes the following commits: b74631a [Philipp Dallig] Configures ivy to download jar libraries only from remote
- Loading branch information
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
zeppelin-interpreter-integration/src/test/resources/ivysettings.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<ivysettings> | ||
<settings defaultResolver="central"/> | ||
<resolvers> | ||
<ibiblio name="central" m2compatible="true" root="https://repo1.maven.org/maven2/"/> | ||
</resolvers> | ||
</ivysettings> |