-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
42 lines (36 loc) · 990 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
/*
*
*/
plugins {
id 'java'
// id 'maven-publish'
}
repositories {
mavenCentral()
// mavenLocal()
}
dependencies {
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.jasypt:jasypt:1.9.3'
implementation 'org.slf4j:slf4j-simple:2.0.6'
implementation 'org.apache.commons:commons-lang3:3.11'
implementation 'org.bouncycastle:bcprov-jdk15on:1.67'
implementation 'io.vavr:vavr:0.10.3'
testImplementation 'junit:junit:4.13.1'
testImplementation 'org.hamcrest:hamcrest:2.2'
}
group = 'io.github.bvotteler'
version = '1.0.3.2'
description = '''A light weight Java library designed to convert byte arrays to and from RSCP \
(the proprietary protocol from E3/DC GmbH) frames and data.'''
java.sourceCompatibility = JavaVersion.VERSION_1_8
//publishing {
// publications {
// maven(MavenPublication) {
// from(components.java)
// }
// }
//}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}