-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (45 loc) · 1.21 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
/**
* @author Hung Nguyen ([email protected])
*/
plugins {
id 'com.github.johnrengelman.shadow' version '2.0.4'
}
apply plugin: 'java'
apply plugin: 'maven-publish'
group 'edu.upenn.cis.precise.openicelite.iomt.medical'
wrapper {
gradleVersion = '4.8'
}
defaultTasks 'build'
sourceCompatibility = 1.8
targetCompatibility = 1.8
version = '0.1.4'
repositories {
flatDir {
dirs 'libs'
}
jcenter()
maven { url "https://jitpack.io" }
}
dependencies {
// Logging
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.0'
// JSON
implementation group: 'org.json', name: 'json', version: '20180130'
// RXTX for Serial Communication
implementation group: 'com.github.purejavacomm', name: 'purejavacomm', version: '1.0.1.RELEASE'
// OpenICE-lite Core
implementation 'com.github.samdware:openice-lite:v0.1.4'
}
shadowJar {
baseName = 'openice-lite-iomt-masimo-rad8'
classifier = null
}
publishing {
publications {
shadow(MavenPublication) { publication ->
project.shadow.component(publication)
}
}
}