An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

# Elucidator

![Maven metadata URL](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fmaven.omico.me%2Fme%2Fomico%2Felucidator%2Felucidator%2Fmaven-metadata.xml)
![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/me.omico.elucidator/elucidator?server=https%3A%2F%2Fs01.oss.sonatype.org)

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 Omico

Licensed 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 at

https://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.
```