-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (34 loc) · 959 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
39
apply plugin :'java'
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'
mainClassName = 'com.tongji.bruno.gfdl.PPSO_main'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.4'
}
}
repositories {
mavenCentral()
maven{
url "http://repo.boundlessgeo.com/main/"
}
}
shadowJar {
baseName = 'ppso'
classifier = null
version = null
dependencies {
include(dependency('edu.ucar:netcdfAll:4.6.10'))
include(dependency('gov.nist.math:jama:1.0.3'))
}
}
dependencies {
// https://mvnrepository.com/artifact/edu.ucar/netcdfAll
compile group: 'edu.ucar', name: 'netcdfAll', version: '4.6.10'
// https://mvnrepository.com/artifact/gov.nist.math/jama
compile group: 'gov.nist.math', name: 'jama', version: '1.0.3'
testCompile group: 'junit', name: 'junit', version: '4.11'
}