-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
41 lines (34 loc) · 1014 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
40
41
plugins {
id 'java'
}
group 'uk.ac.hutton.germinate-importer'
version '4.8.0'
compileJava.options.encoding = 'UTF-8'
sourceCompatibility = 21
repositories {
maven {
url 'https://repo.spring.io/plugins-release/'
}
maven {
url 'https://maven.imagej.net/content/repositories/public/'
}
maven {
url 'https://nexus.geomatys.com/repository/geotoolkit/'
}
maven {
url 'https://repo.osgeo.org/repository/release/'
}
mavenCentral()
}
dependencies {
implementation fileTree(dir: 'lib', include: ['*.jar'])
implementation 'cisd:jhdf5:19.04.0'
implementation 'org.jooq:jooq:3.16.18'
implementation 'com.google.code.gson:gson:2.10'
implementation 'mysql:mysql-connector-java:8.0.33'
implementation 'org.dhatim:fastexcel-reader:0.14.0'
implementation 'javax.media:jai_core:1.1.3'
implementation 'org.geotools:gt-shapefile:27.2'
// Only needed for local debug
implementation 'org.flywaydb:flyway-core:6.5.7'
}