This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
Llanfair/build.gradle

36 lines
754 B
Groovy
Raw Normal View History

buildscript {
repositories { jcenter() }
}
plugins {
id 'java'
id 'application'
2016-03-21 11:55:22 -04:00
id 'com.github.johnrengelman.shadow' version '1.2.3'
id 'edu.sc.seis.macAppBundle' version '2.1.5'
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
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'
}
macAppBundle {
appName = 'Llanfair'
mainClassName = 'org.fenix.llanfair.Llanfair'
bundleJRE = false
javaProperties.put('apple.laf.useScreenMenuBar', 'true')
2015-12-03 17:49:08 -05:00
icon = 'Llanfair.icns'
}