forked from gered/Llanfair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (35 loc) · 1.16 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
buildscript {
repositories { jcenter() }
}
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '2.0.4'
id 'edu.sc.seis.macAppBundle' version '2.2.1'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
version = '1.6-SNAPHSOT'
mainClassName = 'org.fenix.llanfair.Llanfair'
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'lib', include: ['*.jar'])
compile 'com.1stleg:jnativehook:2.0.2'
compile 'com.thoughtworks.xstream:xstream:1.4.4'
compile group: 'org.json', name: 'json', version: '20180130'
// https://mvnrepository.com/artifact/javax.json/javax.json-api
compile group: 'javax.json', name: 'javax.json-api', version: '1.1.2'
// https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.6'
// https://mvnrepository.com/artifact/org.glassfish/javax.json
compile group: 'org.glassfish', name: 'javax.json', version: '1.1.2'
}
macAppBundle {
appName = 'Llanfair'
mainClassName = 'org.fenix.llanfair.Llanfair'
bundleJRE = false
javaProperties.put('apple.laf.useScreenMenuBar', 'true')
icon = 'Llanfair.icns'
}