-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoverrides.xml
28 lines (26 loc) · 920 Bytes
/
overrides.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!--
This module overrides file is unnecessary
if the project is compiled and run using
the "auto export maven dependencies" flag.
-->
<overrides xmlns="http://www.ceylon-lang.org/xsd/overrides">
<!-- Needed for Guice -->
<module groupId="com.google.inject"
artifactId="guice">
<share groupId="javax.inject"
artifactId="javax.inject"/>
</module>
<!-- Only needed to resolve a conflict when Guice and
Weld are included in the same project. -->
<module groupId="org.jboss.weld.se"
artifactId="weld-se-shaded">
<add groupId="javax.inject"
artifactId="javax.inject"
version="1"
shared="true"/>
<!-- Not needed, but helps Weld start up faster. -->
<add groupId="org.jboss"
artifactId="jandex"
version="2.0.3.Final"/>
</module>
</overrides>