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

38 lines
774 B
Groovy
Raw Normal View History

buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.2'
}
}
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '1.2.2'
id 'edu.sc.seis.macAppBundle' version '2.1.3'
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
version = '1.5-SNAPSHOT'
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'
}
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'
}