Alter build.gradle to produce artifacts

This commit is contained in:
2014-11-09 21:58:38 +00:00
parent b63d1d5bdf
commit 4df248e0b3
2 changed files with 14 additions and 9 deletions

12
.gitignore vendored
View File

@@ -1,8 +1,6 @@
*.iml .classpath
*.ipr .project
*.iws .settings
.gradle .gradle
.DS_Store .maven
/build build
*/build
/out

View File

@@ -1,5 +1,12 @@
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'maven'
repositories { group = 'net.rubygrapefruit'
mavenCentral() archivesBaseName = 'platform'
version = '0.1'
uploadArchives {
repositories.mavenDeployer {
repository(url: uri('.maven'))
}
} }