Skip to content

Commit 429f5a8

Browse files
committed
Merge pull request #5 from flow/release/1.0.0
Release/1.0.0
2 parents 0ad1ba1 + 29d5217 commit 429f5a8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ after_success:
3131
deploy:
3232
provider: releases
3333
api-key: $GITHUB_TOKEN
34-
file: "target/flow-commons-`cat version.txt`.jar"
34+
file: "target/flow-plugins-`cat version.txt`.jar"
3535
skip_cleanup: true
3636
on:
3737
branch: master

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 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)
1+
# 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)
22

33
Extensible and modular library for creating Java-based plugins that are loaded separate from the main codebase at runtime.
44

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

5151
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
5454
mavenCentral()
5555
}
5656
dependencies {
57-
compile 'com.flowpowered:flow-plugins:0.1.0-SNAPSHOT'
57+
compile 'com.flowpowered:flow-plugins:1.0.0'
5858
}
5959

6060
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:

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apply plugin: 'signing'
1313
ext.projectName = 'Flow Plugins'
1414
group = 'com.flowpowered'
1515
archivesBaseName = 'flow-plugins'
16-
version = '0.1.0-SNAPSHOT'
16+
version = '1.0.0'
1717
ext.packaging = 'jar'
1818
ext.inceptionYear = '2013'
1919
ext.url = 'https://flowpowered.com/plugins'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<name>Flow Plugins</name>
77
<groupId>com.flowpowered</groupId>
88
<artifactId>flow-plugins</artifactId>
9-
<version>0.1.0-SNAPSHOT</version>
9+
<version>1.0.0</version>
1010
<packaging>jar</packaging>
1111
<inceptionYear>2013</inceptionYear>
1212
<url>https://flowpowered.com/plugins</url>

0 commit comments

Comments
 (0)