https://github.com/icerockdev/icerock-talaiot-config-plugin
https://github.com/icerockdev/icerock-talaiot-config-plugin
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/icerockdev/icerock-talaiot-config-plugin
- Owner: icerockdev
- License: apache-2.0
- Created: 2021-05-04T09:18:26.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-08T08:05:44.000Z (over 4 years ago)
- Last Synced: 2025-05-07T05:04:02.783Z (about 1 year ago)
- Language: Kotlin
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# About
Configuration of [Talaiot gradle plugin](https://github.com/cdsap/Talaiot/) with IceRock Development setup.
All build statistics will be sent on IceRock's analytics database for analysis.
# Setup
in `settings.gradle.kts` (gradle 6.9+):
```kotlin
pluginManagement {
repositories {
mavenCentral()
google()
gradlePluginPortal()
}
}
plugins {
id("dev.icerock.gradle.talaiot") version("3.+")
}
```
# Development
In plugin catalog create a file `gradle.properties`
add keys:
```
influx.url=
influx.org=
influx.bucket=
influx.token=
slack.webhook=
```
for values you could use [influxdata.com](https://www.influxdata.com/) service
before testing or Gradle Sync you should publish plugin to mavenLocal:
```shell
./gradlew -p plugin publishToMavenLocal
```