-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
26 lines (26 loc) · 945 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
apply plugin : 'java'
compileJava.options.fork = true
compileJava.options.forkOptions.executable = "/usr/lib/jvm/jdk-11/bin/javac"
repositories {
mavenCentral()
maven{
url "http://maven.imagej.net/content/repositories/public/"
}
maven {
name 'Unidata'
url 'https://artifacts.unidata.ucar.edu/content/repositories/unidata-releases'
}
maven {
url 'https://artifacts.openmicroscopy.org/artifactory/maven/'
}
}
dependencies {
implementation 'com.github.lalyos:jfiglet:0.0.8'
// https://mvnrepository.com/artifact/net.imagej/imagej
compile group: 'net.imagej', name: 'imagej', version: '2.0.0-rc-71'
compile group: 'ome', name: 'formats-api', version: '6.0.0-m4'
compile group: 'ome', name: 'formats-bsd', version: '6.0.0-m4'
compile group: 'ome', name: 'formats-gpl', version: '6.0.0-m4'
}
apply plugin : 'application'
mainClassName = 'NucFinder'