-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (32 loc) · 973 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
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.3/userguide/java_library_plugin.html
*/
plugins {
id 'java'
id 'application'
}
repositories {
mavenCentral()
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
java {
withJavadocJar()
}
dependencies {
implementation 'gov.nasa.gsfc.heasarc:nom-tam-fits:1.15.2'
implementation 'org.apache.commons:commons-configuration2:2.7'
implementation 'commons-beanutils:commons-beanutils:1.9.4'
implementation 'com.google.code.gson:gson:2.8.6'
implementation fileTree(dir: 'lib', include: '*.jar')
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}
application {
mainClass = 'spv.gui.ApplicationWindow'
}