diff --git a/.gitignore b/.gitignore index 0df0b83..53d3192 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,6 @@ -*.iml -*.ipr -*.iws +.classpath +.project +.settings .gradle -.DS_Store -/build -*/build -/out +.maven +build \ No newline at end of file diff --git a/build.gradle b/build.gradle index 52fefce..8d18dd9 100755 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,12 @@ apply plugin: 'java' +apply plugin: 'maven' -repositories { - mavenCentral() +group = 'net.rubygrapefruit' +archivesBaseName = 'platform' +version = '0.1' + +uploadArchives { + repositories.mavenDeployer { + repository(url: uri('.maven')) + } } \ No newline at end of file