-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (29 loc) · 870 Bytes
/
build.gradle
File metadata and controls
37 lines (29 loc) · 870 Bytes
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
plugins {
id 'java-library'
id 'signing'
id "com.vanniktech.maven.publish" version "0.30.0"
}
// build.common.gradle include
apply from: 'build.common.gradle'
allprojects {
group = 'org.deltacv.visionloop'
version = '1.2.9'
}
repositories {
mavenCentral()
google()
maven { url "https://maven.pkg.jetbrains.space/public/p/compose/dev" }
}
dependencies {
api 'org.deltacv.EOCV-Sim:Vision:4.0.1'
api 'org.deltacv.EOCV-Sim:Common:4.0.1'
compileOnly 'org.jetbrains.skiko:skiko-awt:0.8.15'
api 'org.deltacv.steve:core:1.1.3'
api 'org.deltacv.steve:backend-openpnp:1.1.3'
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation "org.slf4j:slf4j-simple:2.0.16"
}
test {
useJUnitPlatform()
}