-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (34 loc) · 991 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
apply from: gradle.oshCoreDir + '/common.gradle'
repositories {
mavenCentral()
}
dependencies {
compile 'org.sensorhub:sensorhub-core:' + oshCoreVersion
compile 'org.sensorhub:sensorhub-service-swe:' + oshCoreVersion
compile 'org.sensorhub:sensorhub-storage-perst:' + oshCoreVersion
compile 'org.sensorhub:sensorhub-webui-core:' + oshCoreVersion
compile 'org.sensorhub:sensorhub-tools:' + oshCoreVersion
compile 'org.sensorhub:sensorhub-comm-rxtx:' + oshCoreVersion
compile 'org.sensorhub:sensorhub-comm-dio:' + oshCoreVersion
compile 'org.sensorhub:sensorhub-driver-gps-nmea:[1.0-2.0]'
compile 'org.sensorhub:sensorhub-driver-v4l:[1.0-2.0]'
}
distributions {
main {
baseName = 'osh-float'
contents {
from 'scripts'
from 'config'
from 'README.md'
into('web') {
from 'web'
}
into('lib') {
from project.configurations.compileClasspath
}
into('db'){
from 'data_files'
}
}
}
}