Skip to content

Commit

Permalink
update gradle to 8.2.1 and add Snapshot usage info to ReadMe
Browse files Browse the repository at this point in the history
  • Loading branch information
Quillraven committed Jul 15, 2023
1 parent 00be2ca commit f24b582
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,16 @@ implementation("io.github.quillraven.fleks:Fleks:2.3")
dependencyMulti("io.github.quillraven.fleks:Fleks:2.3", registerPlugin = false)
```

If you want to use the Snapshot version then you need to add the snapshot repository as well:

```kotlin
// Groovy DSL
maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }

// Kotlin DSL
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/") }
```

## API and examples

The API is documented in the [wiki](https://github.com/Quillraven/Fleks/wiki) that
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit f24b582

Please sign in to comment.