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

31 lines
547 B
Groovy
Raw Normal View History

apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.7
targetCompatibility = 1.7
version = '1.4.3'
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'lib', include: ['*.jar'])
compile 'com.1stleg:jnativehook:2.0.2'
compile 'com.thoughtworks.xstream:xstream:1.4.4'
}
buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.2'
}
}
shadowJar {
manifest {
attributes 'Main-Class': 'org.fenix.llanfair.Llanfair'
}
}