-
Notifications
You must be signed in to change notification settings - Fork 0
/
overrides.xml
45 lines (37 loc) · 1.4 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<overrides xmlns="http://www.ceylon-lang.org/xsd/overrides"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.ceylon-lang.org/xsd/overrides http://www.ceylon-lang.org/xsd/overrides">
<define name="version" value="2.3.2"/>
<define name="mac" value="natives-macosx-universal"/>
<define name="linux" value="natives-linux-i586"/>
<define name="windows" value="natives-windows-i586"/>
<!--
Specify all native dependencies here.
Note: we could have done it in module.ceylon, and
we would not have needed this overrides file.
-->
<add groupId="org.jogamp.jogl"
artifactId="jogl-all"
version="${version}"
classifier="${mac}"/>
<add groupId="org.jogamp.gluegen"
artifactId="gluegen-rt"
version="${version}"
classifier="${mac}"/>
<add groupId="org.jogamp.jogl"
artifactId="jogl-all"
version="${version}"
classifier="${linux}"/>
<add groupId="org.jogamp.gluegen"
artifactId="gluegen-rt"
version="${version}"
classifier="${linux}"/>
<add groupId="org.jogamp.jogl"
artifactId="jogl-all"
version="${version}"
classifier="${windows}"/>
<add groupId="org.jogamp.gluegen"
artifactId="gluegen-rt"
version="${version}"
classifier="${windows}"/>
</overrides>