forked from belaban/JGroups
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Listed resolvers individually in ivysettings.xml
- Loading branch information
Showing
1 changed file
with
16 additions
and
6 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,14 +1,24 @@ | ||
<ivysettings> | ||
<settings defaultResolver="default"/> | ||
<property name="m2-pattern" value="${user.home}/.m2/jboss-repository/[organisation]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" override="false" /> | ||
<property | ||
name="m2-pattern" | ||
value="${user.home}/.m2/jboss-repository/[organisation]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" | ||
override="false" /> | ||
<resolvers> | ||
<filesystem name="local-maven2" m2compatible="true" > | ||
<artifact pattern="${m2-pattern}"/> | ||
</filesystem> | ||
|
||
<filesystem name="local-m2-publish" m2compatible="true"> | ||
<artifact pattern="${m2-pattern}"/> | ||
</filesystem> | ||
|
||
<ibiblio name="central" m2compatible="true"/> | ||
|
||
<!-- Tries to find an artifact in the local maven repo first --> | ||
<chain name="default"> | ||
<filesystem name="local-maven2" m2compatible="true" > | ||
<artifact pattern="${m2-pattern}"/> | ||
<ivy pattern="${m2-pattern}"/> | ||
</filesystem> | ||
<ibiblio name="central" m2compatible="true"/> | ||
<resolver ref="local-maven2"/> | ||
<resolver ref="central"/> | ||
</chain> | ||
</resolvers> | ||
</ivysettings> |