forked from Unidata/netcdf-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (26 loc) · 1.16 KB
/
build.gradle
File metadata and controls
35 lines (26 loc) · 1.16 KB
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
description = 'Decoder for the GRIB 1 and 2 formats.'
ext.title = 'GRIB 1 and 2 IOSPs and Feature Collections'
apply from: "$rootDir/gradle/any/dependencies.gradle"
apply from: "$rootDir/gradle/any/java-library.gradle"
apply from: "$rootDir/gradle/any/protobuf.gradle"
dependencies {
api enforcedPlatform(project(':netcdf-java-platform'))
testImplementation enforcedPlatform(project(':netcdf-java-testing-platform'))
api project(':cdm:cdm-core')
implementation project(':native-compression:libaec-jna')
implementation 'com.google.protobuf:protobuf-java'
implementation 'org.jdom:jdom2'
implementation 'com.google.code.findbugs:jsr305'
implementation 'edu.ucar:jj2000'
implementation 'com.google.guava:guava'
implementation 'com.beust:jcommander'
implementation 'com.google.re2j:re2j'
implementation 'org.slf4j:slf4j-api'
implementation 'net.java.dev.jna:jna'
testImplementation project(':cdm-test-utils')
testImplementation project(':udunits')
testImplementation 'com.google.truth:truth'
testImplementation 'org.jsoup:jsoup'
testRuntimeOnly project(':native-compression:libaec-native')
testRuntimeOnly 'ch.qos.logback:logback-classic'
}