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 Nov 9, 2024
1 parent 11cfd7f commit 07877f7
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 @@ -276,7 +276,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>2.0.1</version>
<version>2.1.0</version>
<scope>provided</scope>
</dependency>
```
Expand Down Expand Up @@ -328,14 +328,14 @@ Rocker is published to Maven central. To add as a dependency in Maven:
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>rocker-runtime</artifactId>
<version>2.0.1</version>
<version>2.1.0</version>
</dependency>

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

```groovy
plugins {
id "com.fizzed.rocker" version "2.0.1"
id "com.fizzed.rocker" version "2.1.0"
}
sourceSets {
Expand Down

0 comments on commit 07877f7

Please sign in to comment.