Added some stuff necessary to publish to maven central - I hope it still builds on travis

This commit is contained in:
2015-06-21 08:58:49 +02:00
parent 607e777a7a
commit fefefe6809
5 changed files with 97 additions and 4 deletions

View File

@ -2,6 +2,18 @@ plugins {
id "us.kirchmeier.capsule" version "1.0-rc1"
}
uploadArchives {
repositories {
mavenDeployer {
pom.project {
name 'Jabit Demo'
artifactId = 'jabit-demo'
description 'An example Bitmessage client using Jabit.'
}
}
}
}
task fatCapsule(type: FatCapsule) {
applicationClass 'ch.dissem.bitmessage.demo.Main'
}