-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (32 loc) · 870 Bytes
/
build.gradle
File metadata and controls
39 lines (32 loc) · 870 Bytes
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
buildscript {
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.4'
classpath 'gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.5'
}
}
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'com.github.sherter.google-java-format'
group = 'monto'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
jar {
manifest {
attributes('Main-Class': 'monto.service.java8.Main')
}
}
dependencies {
compile files("${System.properties['java.home']}/../lib/tools.jar")
compile project(':services-base-java')
compile 'org.antlr:antlr4-runtime:4.5.3'
compile 'commons-cli:commons-cli:1.3.1'
compile 'com.github.javaparser:javaparser-core:2.3.0'
}
defaultTasks 'shadowJar'