Migrate to gradle project

This commit is contained in:
2014-10-18 17:02:29 +01:00
parent d62880ea52
commit 5733512b9f
36 changed files with 2840 additions and 12 deletions

21
build.gradle Normal file
View File

@@ -0,0 +1,21 @@
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
group = 'com.dt'
archivesBaseName = 'iTunesController'
version = '0.2'
repositories {
mavenCentral()
}
dependencies {
compile 'net.sf.jacob-project:jacob:1.+'
}
uploadArchives {
repositories.mavenDeployer {
repository(url: uri('.maven'))
}
}