Skip to content

Commit

Permalink
Updated README with latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Jan 19, 2019
1 parent fbd38b1 commit 28510d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ in production. In Maven, this means you'll want to add the dependency in the
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>rocker-compiler</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<scope>provided</scope>
</dependency>
```
Expand Down Expand Up @@ -306,14 +306,14 @@ Rocker is published to Maven central. To add as a dependency in Maven:
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>rocker-runtime</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>

<!-- for hot-reloading support only during development -->
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>rocker-compiler</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<scope>provided</scope>
</dependency>
```
Expand All @@ -326,7 +326,7 @@ repositories {
}
dependencies {
compile group: 'com.fizzed', name: 'rocker-runtime', version: '1.2.0'
compile group: 'com.fizzed', name: 'rocker-runtime', version: '1.2.1'
// add rocker-compiler dependency as needed
}
```
Expand All @@ -345,7 +345,7 @@ Add the following to your pom
<plugin>
<groupId>com.fizzed</groupId>
<artifactId>rocker-maven-plugin</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<executions>
<execution>
<id>generate-rocker-templates</id>
Expand Down Expand Up @@ -450,7 +450,7 @@ gradle.org. Just add the following to your build script:

```groovy
plugins {
id "com.fizzed.rocker" version "1.2.0"
id "com.fizzed.rocker" version "1.2.1"
}
sourceSets {
Expand Down

0 comments on commit 28510d4

Please sign in to comment.