-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (39 loc) · 1.33 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
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Groovy project to get you started.
* For more details take a look at the Groovy Quickstart chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.1/userguide/tutorial_groovy_projects.html
*/
plugins {
id 'java'
// Apply the application plugin to add support for building a CLI application.
id 'application'
id 'com.github.johnrengelman.shadow' version '5.0.0'
}
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
mavenLocal()
jcenter()
flatDir {
dir("libs")
}
}
configurations {
// configuration that holds jars to include in the jar
extraLibs
}
dependencies {
compile 'org.eclipse.collections:eclipse-collections-api:10.1.0'
compile 'org.eclipse.collections:eclipse-collections:10.1.0'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
compile fileTree(dir: 'libs', include: '*.jar')
runtime "mysql:mysql-connector-java:8.0.15"
testCompile group: 'junit', name: 'junit', version: '4.12'
configurations.compile.extendsFrom(configurations.extraLibs)
}
application {
// Define the main class for the application.
mainClassName = 'org.jax.mvar.utility.App'
}