From 89bab34fee1485c53e41ce49c8ff30958113bf94 Mon Sep 17 00:00:00 2001 From: pron Date: Wed, 7 Oct 2015 15:11:40 +0300 Subject: [PATCH] Prepare release --- README.md | 4 ++-- build.gradle | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b401b231..99152348 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # *Capsule*
Dead-Simple Packaging and Deployment for JVM Applications -[![Build Status](http://img.shields.io/travis/puniverse/capsule.svg?style=flat)](https://travis-ci.org/puniverse/capsule) [![Coverage](https://coveralls.io/repos/puniverse/capsule/badge.svg?branch=master)](https://coveralls.io/r/puniverse/capsule?branch=master) [![Dependency Status](https://www.versioneye.com/user/projects/539704a483add7f80a000030/badge.svg?style=flat)](https://www.versioneye.com/user/projects/539704a483add7f80a000030) [![Version](http://img.shields.io/badge/version-1.0-blue.svg?style=flat)](https://github.com/puniverse/capsule/releases) [![License](http://img.shields.io/badge/license-EPL-blue.svg?style=flat)](https://www.eclipse.org/legal/epl-v10.html) +[![Build Status](http://img.shields.io/travis/puniverse/capsule.svg?style=flat)](https://travis-ci.org/puniverse/capsule) [![Coverage](https://coveralls.io/repos/puniverse/capsule/badge.svg?branch=master)](https://coveralls.io/r/puniverse/capsule?branch=master) [![Dependency Status](https://www.versioneye.com/user/projects/539704a483add7f80a000030/badge.svg?style=flat)](https://www.versioneye.com/user/projects/539704a483add7f80a000030) [![Version](http://img.shields.io/badge/version-1.0.1-blue.svg?style=flat)](https://github.com/puniverse/capsule/releases) [![License](http://img.shields.io/badge/license-EPL-blue.svg?style=flat)](https://www.eclipse.org/legal/epl-v10.html) Capsule is a packaging and deployment tool for JVM applications. A capsule is a single executable JAR that contains everything your application needs to run either in the form of embedded files or as declarative metadata. It can contain your JAR artifacts, your dependencies and resources, native libraries, the require JRE version, the JVM flags required to run the application well, Java or native agents and more. In short, a capsule is a self-contained JAR that knows everything there is to know about how to run your application the way it's meant to run. @@ -22,7 +22,7 @@ Discuss Capsule on the capsule-user [Google Group/Mailing List](https://groups.g or: - co.paralleluniverse:capsule:1.0 + co.paralleluniverse:capsule:1.0.1 or: diff --git a/build.gradle b/build.gradle index d75364bf..b3f3f583 100644 --- a/build.gradle +++ b/build.gradle @@ -29,7 +29,7 @@ subprojects { [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' group = "co.paralleluniverse" - version = "1.0.1-SNAPSHOT" + version = "1.0.1" status = "integration" description = "Simple Java deployment" ext.url = "https://github.com/puniverse/capsule" @@ -101,7 +101,7 @@ subprojects { tasks.withType(JavaExec) { classpath += sourceSets.test.runtimeClasspath } - + jacocoTestReport { reports { xml.enabled = true // coveralls plugin depends on xml format report