-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
62 lines (51 loc) · 1.61 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
55
56
57
58
59
60
61
plugins {
id 'java'
id 'maven-publish'
id 'application'
}
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
group = 'one.microproject.rpi'
version = '2.0.0'
mainClassName = 'one.microproject.rpi.powercontroller.PowerControllerApp'
applicationDefaultJvmArgs = ['-Xms32m', '-Xmx32m', '-XX:MaxMetaspaceSize=32m']
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'com.pi4j:pi4j-core:2.1.1'
implementation 'com.pi4j:pi4j-plugin-raspberrypi:2.1.1'
implementation 'com.pi4j:pi4j-plugin-linuxfs:2.1.1'
implementation 'com.pi4j:pi4j-plugin-pigpio:2.1.1'
implementation 'io.undertow:undertow-core:2.2.16.Final'
implementation 'org.slf4j:slf4j-api:1.7.36'
implementation 'org.slf4j:slf4j-simple:1.7.36'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
testImplementation 'com.squareup.okhttp3:okhttp:4.9.3'
}
jar {
archiveBaseName = 'rpi-powercontroller'
}
task jarSources(type: Jar, dependsOn: classes) {
archiveClassifier = 'sources'
archiveBaseName = 'rpi-powercontroller'
}
task jarJavadoc(type: Jar, dependsOn: javadoc) {
archiveClassifier = 'javadoc'
archiveBaseName = 'rpi-powercontroller'
}
artifacts {
archives jar
archives jarSources
archives jarJavadoc
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}