-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
8 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ivysettings> | ||
<settings defaultResolver="gluonhq-chain"/> | ||
<settings defaultResolver="default"/> | ||
|
||
<!-- These "magic lines" are pulled from: https://ant.apache.org/ivy/history/latest-milestone/tutorial/defaultconf.html --> | ||
<include url="${ivy.default.settings.dir}/ivysettings-public.xml"/> | ||
<include url="${ivy.default.settings.dir}/ivysettings-shared.xml"/> | ||
<include url="${ivy.default.settings.dir}/ivysettings-local.xml"/> | ||
<include url="${ivy.default.settings.dir}/ivysettings-main-chain.xml"/> | ||
<include url="${ivy.default.settings.dir}/ivysettings-default-chain.xml"/> | ||
<resolvers> | ||
<ibiblio name="maven" m2compatible="true" root="http://mvnrepository.com/artifact/"/> | ||
<!-- Custom Repos here --> | ||
<ibiblio name="gluonhq" m2compatible="true" root="https://nexus.gluonhq.com/nexus/content/repositories/releases/"/> | ||
<chain name="gluonhq-chain"> | ||
<resolver ref="maven"/> | ||
<resolver ref="gluonhq"/> | ||
</chain> | ||
</resolvers> | ||
</ivysettings> | ||
<chain name="default" returnFirst="true" checkmodified="true" changingPattern=".*SNAPSHOT"> | ||
<!-- These two are magic lines from the default conf --> | ||
<resolver ref="local"/> | ||
<resolver ref="main" /> | ||
|
||
<!-- Custom Repos here --> | ||
<resolver ref="gluonhq" /> | ||
</chain> | ||
<modules> | ||
<module organisation="org.openjfx" name=".*" resolver="gluonhq"/> | ||
</modules> | ||
</ivysettings> | ||
|
||
|
||
|