|
| 1 | +[](https://maven.kotlingang.fun/me/neon/codee/core) |
1 | 2 | # Core
|
2 | | -Here is the implementation of interfaces from `plugin-api` and default implementations of some things. |
| 3 | +Everything that can be used for plugins or other customization is stored here. |
| 4 | +There are themes, icons, localization, projects and everything related to languages (for plugins: analyzers, etc.). |
| 5 | +## Implementation |
| 6 | +### Gradle: |
| 7 | +```kotlin |
| 8 | +repositories { |
| 9 | + maven("https://maven.kotlingang.fun") |
| 10 | +} |
| 11 | +dependencies { |
| 12 | + implementation("me.neon.codee:core:$version") |
| 13 | +} |
| 14 | +``` |
| 15 | +### Kotlin Script: |
| 16 | +```kotlin |
| 17 | +@file:Repository("https://maven.kotlingang.fun") |
| 18 | +@file:DependsOn("me.neon.codee:core:$version") |
| 19 | + |
| 20 | +import kotlin.script.experimental.dependencies.Repository |
| 21 | +import kotlin.script.experimental.dependencies.DependsOn |
| 22 | + |
| 23 | +/* Your code */ |
| 24 | +``` |
0 commit comments