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
*.ipr
*.iws
.classpath
.project
.settings
.gradle
.DS_Store
/build
*/build
/out
.maven
build

View File

@@ -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'))
}
}