forked from opensha/opensha-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (21 loc) · 745 Bytes
/
build.gradle
File metadata and controls
30 lines (21 loc) · 745 Bytes
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
/*
* opensha-dev dependencies
*/
apply plugin: 'java-library'
ext {
parentProject = 'opensha'
}
apply from: '../opensha/build-common.gradle'
dependencies {
api "ghsc:nshmp-lib:1.7.14"
implementation 'org.apache.pdfbox:pdfbox:2.0.6'
implementation 'org.apache.commons:commons-collections4:4.1'
api 'uk.me.berndporr:iirj:1.0'
implementation 'com.github.haifengl:smile-core:2.6.0'
/* no remote repo */
implementation files('lib/EventWebService.jar')
api files('lib/flanagan.jar') // FFT and PSD library along with other tools
implementation project(path: ':opensha')
implementation project(path: ':opensha', configuration: 'implResolvable')
testImplementation 'junit:junit:4.12'
}