https://github.com/featurevisor/featurevisor-kotlin-plugin
Gradle plugin for running tests using Featurevisor Kotlin SDK
https://github.com/featurevisor/featurevisor-kotlin-plugin
Last synced: about 1 year ago
JSON representation
Gradle plugin for running tests using Featurevisor Kotlin SDK
- Host: GitHub
- URL: https://github.com/featurevisor/featurevisor-kotlin-plugin
- Owner: featurevisor
- License: mit
- Created: 2024-03-12T11:46:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-05T12:14:50.000Z (about 2 years ago)
- Last Synced: 2024-04-05T13:27:34.614Z (about 2 years ago)
- Language: Kotlin
- Size: 75.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README

**featurevisor-kotlin**
This repository is a work in progress to use test runner by just using gradle plugin.
We are not ready yet. Please come back later.
**Installation**
`put below line of code in setting.gradle.kts`
```
pluginManagement {
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
maven {
url = uri("https://maven.pkg.github.com/featurevisor/featurevisor-kotlin-plugin")
credentials {
username = GITHUB_USERNAME
password = GITHUB_PASSWORD_OR_TOKEN
}
}
}
}
```
`put below code in build.gradle.kts`
```
plugins {
id("com.featurevisor.plugin") version ""
}
```
...
**Usage**
...