-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
50 lines (36 loc) · 963 Bytes
/
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
plugins {
id 'java-library'
id 'maven-publish'
}
allprojects {
group = 'de.tbressler.waterrower'
version = '1.2.1'
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
// Serial communication:
implementation 'io.netty:netty-all:4.1.115.Final'
// jSerialComm:
implementation 'com.fazecast:jSerialComm:2.11.0'
// Utils:
implementation 'com.google.guava:guava:33.3.1-jre'
// Logging:
implementation 'org.slf4j:slf4j-api:2.0.16'
testImplementation 'org.slf4j:slf4j-simple:2.0.16'
// JUnit and tests:
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
testImplementation 'org.mockito:mockito-core:5.14.2'
}
jar {
manifest {
attributes 'Implementation-Title': 'WaterRower Core Library',
'Implementation-Version': archiveVersion,
'Implementation-Vendor': 'Tobias Breßler'
}
}
test {
useJUnitPlatform()
}