https://github.com/omico/elucidator
Provide a better Kotlin DSL experience for kotlinpoet.
https://github.com/omico/elucidator
code-generation dsl kotlin kotlin-dsl kotlinpoet
Last synced: 3 months ago
JSON representation
Provide a better Kotlin DSL experience for kotlinpoet.
- Host: GitHub
- URL: https://github.com/omico/elucidator
- Owner: Omico
- Created: 2023-05-13T16:57:06.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-01T15:49:38.000Z (12 months ago)
- Last Synced: 2024-06-01T17:45:12.557Z (12 months ago)
- Topics: code-generation, dsl, kotlin, kotlin-dsl, kotlinpoet
- Language: Kotlin
- Homepage:
- Size: 385 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Elucidator

Elucidator aims to provide a better Kotlin DSL experience for [kotlinpoet](https://github.com/square/kotlinpoet).
Currently, it is still in the work-in-progress phase and not ready for production use. This means the API is unstable, may change in the future, and may be missing some features.
## Usage
```kotlin
repositories {
// For stable releases only
maven(url = "https://maven.omico.me")
// Or for snapshots only
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots")
}dependencies {
implementation("me.omico.elucidator:elucidator:")
}
```> **Note:** Since 0.12.0 version, Elucidator is published to my personal Maven repository.
> Add `mavenCentral()` instead of `maven(url = "https://maven.omico.me")` if you want to use the old version.## License
```txt
Copyright 2023 OmicoLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttps://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```