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

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

Awesome Lists containing this project

README

          

![GitHub Release](https://img.shields.io/github/v/release/featurevisor/featurevisor-kotlin-plugin)

**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**

...