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
Gered aaf31a93be update gradle configuration to something more recent (2.1+)
apparently i was unknowningly using a very old version of gradle. oops.
2015-11-30 14:59:47 -05:00

29 lines
532 B
Groovy

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'
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
version = '1.4.3'
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'
}