Skip to content

Commit 309835d

Browse files
committed
Merge pull request #9 from flow/release/1.0.0
Use React for name, not Flow React
2 parents e13e873 + 7c41c26 commit 309835d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Flow React [![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/react/develop.svg?style=flat)](https://travis-ci.org/flow/react) [![Coverage Status](http://img.shields.io/coveralls/flow/react/develop.svg?style=flat)](https://coveralls.io/r/flow/react)
1+
# React [![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/react/develop.svg?style=flat)](https://travis-ci.org/flow/react) [![Coverage Status](http://img.shields.io/coveralls/flow/react/develop.svg?style=flat)](https://coveralls.io/r/flow/react)
22

33
Real-time 3D physics library for Java, based on the [ReactPhysics3D](https://code.google.com/p/reactphysics3d/) C++ library by [Daniel Chappuis](http://www.danielchappuis.ch/).
44

@@ -54,7 +54,7 @@ If you're using [Maven](https://maven.apache.org/download.html) to manage projec
5454

5555
<dependency>
5656
<groupId>com.flowpowered</groupId>
57-
<artifactId>flow-react</artifactId>
57+
<artifactId>react</artifactId>
5858
<version>1.0.0-SNAPSHOT</version>
5959
</dependency>
6060

@@ -64,7 +64,7 @@ If you're using [Gradle](https://www.gradle.org/) to manage project dependencies
6464
mavenCentral()
6565
}
6666
dependencies {
67-
compile 'com.flowpowered:flow-react:1.0.0-SNAPSHOT'
67+
compile 'com.flowpowered:react:1.0.0-SNAPSHOT'
6868
}
6969

7070
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:
@@ -86,12 +86,12 @@ We've adopted the [git flow branching model](http://nvie.com/posts/a-successful-
8686
The `master` branch is production-ready and contains the latest tagged releases. Before a release is made, it is stagged in `release/x` branches before being pushed and tagged in the `master` branch. Small patches from `hotfix/x` branches are also pushed to `master`, and will always have a release version. The `develop` branch is pre-production, and is where we push `feature/x` branches for testing.
8787

8888
## Legal Stuff
89-
Flow React is licensed under the [MIT License][License]. Basically, you can do whatever you want as long as you include the original copyright. Please see the `LICENSE.txt` file for details.
89+
React is licensed under the [MIT License][License]. Basically, you can do whatever you want as long as you include the original copyright. Please see the `LICENSE.txt` file for details.
9090

9191
## Credits
9292
* Daniel Chappuis and contributors of the original [ReactPhysics3d](https://code.google.com/p/reactphysics3d/) C++ library.
9393
* [Spout](https://spout.org/) and contributors - *where we all began, and for much of the re-licensed code.*
9494
* All the people behind [Java](http://www.oracle.com/technetwork/java/index.html), [Maven](https://maven.apache.org/), and [Gradle](https://www.gradle.org/).
9595

96-
[Donate]: https://flattr.com/submit/auto?user_id=spout&url=https://github.com/flow/react&title=Flow+React&language=Java&tags=github&category=software
96+
[Donate]: https://flattr.com/submit/auto?user_id=spout&url=https://github.com/flow/react&title=React&language=Java&tags=github&category=software
9797
[License]: https://tldrlegal.com/l/mit

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ apply plugin: 'maven'
1010
apply plugin: 'signing'
1111

1212
// Project information
13-
ext.projectName = 'Flow React'
13+
ext.projectName = 'React'
1414
group = 'com.flowpowered'
15-
archivesBaseName = 'flow-react'
15+
archivesBaseName = 'react'
1616
version = '1.0.0-SNAPSHOT'
1717
ext.packaging = 'jar'
1818
ext.inceptionYear = '2013'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<!-- Project information -->
6-
<name>Flow React</name>
6+
<name>React</name>
77
<groupId>com.flowpowered</groupId>
88
<artifactId>react</artifactId>
99
<version>1.0.0-SNAPSHOT</version>

0 commit comments

Comments
 (0)