From 8e07046fda6baea9221ac52139c59177ccb75aac Mon Sep 17 00:00:00 2001 From: Luke Spragg Date: Tue, 15 Sep 2015 21:27:21 -0400 Subject: [PATCH 1/3] Fix GitHub filename to deploy --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 535704a..1b1eba1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,7 @@ after_success: deploy: provider: releases api-key: $GITHUB_TOKEN - file: "target/flow-commons-`cat version.txt`.jar" + file: "target/flow-plugins-`cat version.txt`.jar" skip_cleanup: true on: branch: master From 334b7425c992a256ca429c655a28190e214a42df Mon Sep 17 00:00:00 2001 From: Luke Spragg Date: Tue, 15 Sep 2015 22:00:31 -0400 Subject: [PATCH 2/3] Correct readme badges --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4cd3422..2fdf8e2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Flow Plugins [![License](http://img.shields.io/badge/license-MIT-lightgrey.svg?style=flat)][License] [![Flattr this](http://img.shields.io/badge/flattr-donate-lightgrey.svg?style=flat)][Donate] [![Build Status](http://img.shields.io/travis/flow/flow-plugins/master.svg?style=flat)](https://travis-ci.org/flow/flow-plugins) [![Coverage Status](http://img.shields.io/coveralls/flow/flow-plugins/master.svg?style=flat)](https://coveralls.io/r/flow/flow-plugins) +# Flow Plugins [![License](http://img.shields.io/badge/license-MIT-lightgrey.svg?style=flat)][License] [![Flattr this](http://img.shields.io/badge/flattr-donate-lightgrey.svg?style=flat)][Donate] [![Build Status](http://img.shields.io/travis/flow/plugins/develop.svg?style=flat)](https://travis-ci.org/flow/plugins) [![Coverage Status](http://img.shields.io/coveralls/flow/plugins/develop.svg?style=flat)](https://coveralls.io/r/flow/plugins) Extensible and modular library for creating Java-based plugins that are loaded separate from the main codebase at runtime. From 29d52178d843305b4c4260a2d362eaac33b63cf3 Mon Sep 17 00:00:00 2001 From: Luke Spragg Date: Thu, 17 Sep 2015 19:45:02 -0400 Subject: [PATCH 3/3] Update version to 1.0.0 for release --- README.md | 4 ++-- build.gradle | 2 +- pom.xml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2fdf8e2..2cdb4bb 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ If you're using [Maven](https://maven.apache.org/download.html) to manage projec com.flowpowered flow-plugins - 0.1.0-SNAPSHOT + 1.0.0 If you're using [Gradle](https://www.gradle.org/) to manage project dependencies, simply include the following in your `build.gradle` file: @@ -54,7 +54,7 @@ If you're using [Gradle](https://www.gradle.org/) to manage project dependencies mavenCentral() } dependencies { - compile 'com.flowpowered:flow-plugins:0.1.0-SNAPSHOT' + compile 'com.flowpowered:flow-plugins:1.0.0' } If you plan on using snapshots and do not already have the snapshot repo in your repository list, you will need to add this as well: diff --git a/build.gradle b/build.gradle index 821fe89..306f76b 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ apply plugin: 'signing' ext.projectName = 'Flow Plugins' group = 'com.flowpowered' archivesBaseName = 'flow-plugins' -version = '0.1.0-SNAPSHOT' +version = '1.0.0' ext.packaging = 'jar' ext.inceptionYear = '2013' ext.url = 'https://flowpowered.com/plugins' diff --git a/pom.xml b/pom.xml index e678352..b6e2b74 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ Flow Plugins com.flowpowered flow-plugins - 0.1.0-SNAPSHOT + 1.0.0 jar 2013 https://flowpowered.com/plugins