-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
70 lines (54 loc) · 1.94 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
60
61
62
63
64
65
66
67
68
69
70
apply plugin: 'java'
apply plugin: 'eclipse'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
sourceCompatibility = '11'
// to get project version from command line, just type
// $ gradle -PprojVersion=<version_number> build
// default is na
if (project.hasProperty('projVersion')) {
project.version = project.projVersion
} else {
project.version = '1.0.2'
}
// name with versioning of the jar file
jar {
baseName = 'whetgeo1d'
}
// In this section you declare where to find the dependencies of your project
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
maven {
url 'https://repo.osgeo.org/repository/release'
}
maven {
url 'http://maven.geo-solutions.it/'
}
// to write NetCDF
maven {
url "https://artifacts.unidata.ucar.edu/repository/unidata-all/"
}
mavenCentral()
flatDir {
dirs 'lib'
}
}
dependencies {
compile name: 'closureequation-1.0.3-beta'
compile name: 'netcdf-1.0.32-beta'
compile name: 'numerical-1.0.2'
compile name: 'buffer-1.0.32-beta'
// This dependency is exported to consumers, that is to say found on their compile classpath.
//api 'org.apache.commons:commons-math3:3.6.1'
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
//implementation 'com.google.guava:guava:21.0'
// Use JUnit test framework
//testImplementation 'junit:junit:4.12'
testImplementation group: 'junit', name: 'junit', version: '4.+'
// OMS annotation
// https://mvnrepository.com/artifact/org.hortonmachine/hm-gears
implementation group: 'org.hortonmachine', name: 'hm-gears', version: '0.10.4'
// https://mvnrepository.com/artifact/edu.ucar/netcdf
compile group: 'edu.ucar', name: 'netcdf', version: '4.3.22'
compile group: 'org.slf4j', name:'slf4j-nop', version: '1.7.5'
}