-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
54 lines (45 loc) · 1.15 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
54
plugins {
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'java'
}
group 'com.rrr'
version '1.3.0'
java {
sourceCompatibility = JavaVersion.VERSION_17
withSourcesJar()
withJavadocJar()
}
repositories {
mavenLocal {
content {
includeGroup("com.pi4j")
}
}
mavenCentral()
}
dependencies {
testImplementation(platform 'org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.mockito:mockito-core:3.+'
testImplementation 'com.pi4j:pi4j-plugin-mock:2.3.0-SNAPSHOT'
testRuntimeOnly 'org.slf4j:slf4j-simple:2.0.9'
implementation 'com.pi4j:pi4j-core:2.3.0'
implementation 'org.slf4j:slf4j-api:2.0.9'
implementation 'com.pi4j:pi4j-plugin-raspberrypi:2.3.0'
implementation 'com.pi4j:pi4j-plugin-pigpio:2.3.0'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
javadoc {
configure(options) {
tags(
'apiNote:a:API Note:',
'implSpec:a:Implementation Requirements:',
'implNote:a:Implementation Note:'
)
}
}