-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.gradle.kts
49 lines (40 loc) · 1.07 KB
/
build.gradle.kts
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
46
47
48
49
plugins {
id("us.ihmc.ihmc-build")
}
ihmc {
group = "us.ihmc"
version = "0.22.4"
vcsUrl = "https://github.com/ihmcrobotics/euclid"
openSource = true
configureDependencyResolution()
configurePublications()
}
mainDependencies {
api("org.ejml:ejml-core:0.39")
}
geometryDependencies {
api(ihmc.sourceSetProject("main"))
}
frameDependencies {
api(ihmc.sourceSetProject("main"))
api(ihmc.sourceSetProject("geometry"))
}
shapeDependencies {
api(ihmc.sourceSetProject("main"))
api(ihmc.sourceSetProject("geometry"))
api("org.ejml:ejml-ddense:0.39")
}
frameShapeDependencies {
api(ihmc.sourceSetProject("main"))
api(ihmc.sourceSetProject("geometry"))
api(ihmc.sourceSetProject("shape"))
api(ihmc.sourceSetProject("frame"))
}
testDependencies {
api(ihmc.sourceSetProject("geometry"))
api(ihmc.sourceSetProject("frame"))
api(ihmc.sourceSetProject("shape"))
api(ihmc.sourceSetProject("frame-shape"))
api("org.ejml:ejml-ddense:0.39")
api("us.ihmc:ihmc-commons-testing:0.35.1")
}