-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
53 lines (41 loc) · 1.23 KB
/
build.gradle
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
50
51
52
53
plugins {
id 'java-library'
id 'maven-publish'
}
// build.common.gradle include
apply from: 'build.common.gradle'
group = 'com.github.deltacv'
version = '1.2.0'
tasks.register('sourcesJar', Jar) {
from sourceSets.main.allJava
archiveClassifier = "sources"
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourcesJar
}
}
}
repositories {
mavenCentral()
google()
maven { url "https://jitpack.io" }
maven { url 'https://maven.openimaj.org/' }
maven { url 'https://maven.ecs.soton.ac.uk/content/repositories/thirdparty/' }
maven { url "https://maven.pkg.jetbrains.space/public/p/compose/dev" }
}
dependencies {
api 'com.github.deltacv.EOCV-Sim:Vision:3.8.2'
api 'com.github.deltacv.EOCV-Sim:Common:3.8.2'
compileOnly 'org.jetbrains.skiko:skiko-awt:0.8.15'
api 'com.github.deltacv:steve:1.1.1'
api 'com.github.deltacv.steve:backend-openpnp:1.1.1'
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()
}