Skip to content

Commit

Permalink
Update release to 1.0.0 and snapshot to 1.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasMikula committed May 29, 2014
1 parent f735030 commit 4db1e05
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 10 deletions.
46 changes: 38 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,44 @@ Read more about monadic operations in [this blog post](http://tomasmikula.github
Use EasyBind in your project
----------------------------

### Method 1: as a managed dependency (recommended)
### Stable release

Snapshot releases are deployed to Sonatype snapshot repository with these Maven coordinates
Current stable release is 1.0.0.

#### Maven coordinates

| Group ID | Artifact ID | Version |
| :-----------------: | :---------: | :-----: |
| org.fxmisc.easybind | easybind | 1.0.0 |

#### Gradle example

```groovy
dependencies {
compile group: 'org.fxmisc.easybind', name: 'easybind', version: '1.0.0'
}
```

#### Sbt example

```scala
libraryDependencies += "org.fxmisc.easybind" % "easybind" % "1.0.0"
```

#### Manual download

[Download](https://github.com/TomasMikula/EasyBind/releases/download/v1.0.0/easybind-1.0.0.jar) the JAR file and place it on your classpath.


### Snapshot releases

Snapshot releases are deployed to Sonatype snapshot repository.

#### Maven coordinates

| Group ID | Artifact ID | Version |
| :-----------------: | :---------: | :------------: |
| org.fxmisc.easybind | easybind | 1.0.0-SNAPSHOT |
| org.fxmisc.easybind | easybind | 1.0.1-SNAPSHOT |

#### Gradle example

Expand All @@ -176,7 +207,7 @@ repositories {
}
dependencies {
compile group: 'org.fxmisc.easybind', name: 'easybind', version: '1.0.0-SNAPSHOT'
compile group: 'org.fxmisc.easybind', name: 'easybind', version: '1.0.1-SNAPSHOT'
}
```

Expand All @@ -185,13 +216,12 @@ dependencies {
```scala
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"

libraryDependencies += "org.fxmisc.easybind" % "easybind" % "1.0.0-SNAPSHOT"
libraryDependencies += "org.fxmisc.easybind" % "easybind" % "1.0.1-SNAPSHOT"
```

#### Manual download

### Method 2: as an unmanaged dependency

[Download](https://oss.sonatype.org/content/repositories/snapshots/org/fxmisc/easybind/easybind/1.0.0-SNAPSHOT/) the latest JAR file and place it on your classpath.
[Download](https://oss.sonatype.org/content/repositories/snapshots/org/fxmisc/easybind/easybind/1.0.1-SNAPSHOT/) the latest JAR file and place it on your classpath.


Links
Expand Down
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
version = '1.0.1-SNAPSHOT'

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
Expand Down
2 changes: 0 additions & 2 deletions gradle.properties.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version = 1.0.0-SNAPSHOT

sonatypeUsername = <username>
sonatypePassword = <password>

Expand Down

0 comments on commit 4db1e05

Please sign in to comment.