Migrate to gradle project

This commit is contained in:
2014-10-18 15:23:55 +01:00
parent 10843ca56e
commit 75960ceba1
34 changed files with 28 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@@ -0,0 +1,7 @@
build
bin
.gradle
.settings
.project
.classpath
.maven

View File

21
build.gradle Normal file
View File

@@ -0,0 +1,21 @@
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
group = 'org.wiigee'
archivesBaseName = 'wiigee'
version = '1.5.6'
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.11'
}
uploadArchives {
repositories.mavenDeployer {
repository(url: uri('.maven'))
}
}