Skip to content

Commit

Permalink
Merge pull request #5 from flow/release/1.0.0
Browse files Browse the repository at this point in the history
Release/1.0.0
  • Loading branch information
lukespragg committed Sep 19, 2015
2 parents 0ad1ba1 + 29d5217 commit 429f5a8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -45,7 +45,7 @@ If you're using [Maven](https://maven.apache.org/download.html) to manage projec
<dependency>
<groupId>com.flowpowered</groupId>
<artifactId>flow-plugins</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>1.0.0</version>
</dependency>

If you're using [Gradle](https://www.gradle.org/) to manage project dependencies, simply include the following in your `build.gradle` file:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<name>Flow Plugins</name>
<groupId>com.flowpowered</groupId>
<artifactId>flow-plugins</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<inceptionYear>2013</inceptionYear>
<url>https://flowpowered.com/plugins</url>
Expand Down

0 comments on commit 429f5a8

Please sign in to comment.