-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (35 loc) · 927 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
42
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath("gradle.plugin.edu.sc.seis:macAppBundle:2.1.6")
classpath('com.github.jengelman.gradle.plugins:shadow:1.2.4')
}
}
group 'com.github.ankalag0n'
version '1.0'
apply plugin: 'java'
apply plugin: 'edu.sc.seis.macAppBundle'
apply plugin: 'com.github.johnrengelman.shadow'
macAppBundle {
mainClassName = "com.github.ankalag0n.jlinguist.Main"
//icon = "osxIcon.icns"
bundleJRE = false
}
jar {
manifest {
attributes 'Main-Class': 'com.github.ankalag0n.jlinguist.Main'
}
}
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.google.inject', name: 'guice', version: '4.1.0'
compile group: 'commons-configuration', name: 'commons-configuration', version: '1.10'
}