Skip to content

Commit

Permalink
Update README with latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Jan 22, 2025
1 parent bbcca0f commit 75678af
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 @@ -294,7 +294,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.1.0</version>
<version>2.2.1</version>
<scope>provided</scope>
</dependency>
```
Expand Down Expand Up @@ -346,14 +346,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.1.0</version>
<version>2.2.1</version>
</dependency>

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

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

0 comments on commit 75678af

Please sign in to comment.