Skip to content

Commit

Permalink
Release 0.0.2 checklist items
Browse files Browse the repository at this point in the history
  • Loading branch information
Thijsiez committed Oct 27, 2024
1 parent dce5bb6 commit f9d184f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,26 @@ A dynamic, type-safe way to write your queries
[Changelog](CHANGELOG.md) | [Contributing](CONTRIBUTING.md)

## Getting Started
TODO
Examples given use Gradle's Kotlin DSL
Add the KSP Gradle plugin to your build file
```kotlin
plugins {
id("com.google.devtools.ksp") version "2.0.21-1.0.25"
}
```
Add this library to your build file and register it with KSP
```kotlin
dependencies {
implementation("ch.icken:panache-kotlin-dsl:0.0.2")
ksp("ch.icken:panache-kotlin-dsl:0.0.2")
}
```
Optionally configure the behavior
```kotlin
ksp {
arg("addGeneratedAnnotation", "true")
}
```

## Requirements
- Quarkus version `3.9.2` or newer
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

groupId=ch.icken
artifactId=panache-kotlin-dsl
version=0.0.1
version=0.0.2

#https://github.com/quarkusio/quarkus Pinned, do not change
# Minimum, because of https://osv.dev/vulnerability/GHSA-f8h5-v2vg-46rr
Expand Down

0 comments on commit f9d184f

Please sign in to comment.