DeepMedia logo
Open Source

Search...

Other versions of this page

Improve this page on GitHub

Search

Installation

Knee can be installed into your project using a Gradle Plugin. The plugin will take care of adding runtime dependencies, applying the Kotlin Compiler plugin and more.

Configuration

To use Knee in your project, add the following lines:

kotlin logokotlin
// settings.gradle.kts pluginManagement { repositories { gradlePluginPortal() mavenCentral() } } // build.gradle.kts plugins { id("io.deepmedia.tools.knee") version "LATEST_VERSION" }

Replace LATEST_VERSION with the desired version number, 1.1.1.

Snapshots

We regularly push development snapshots of the library at https://s01.oss.sonatype.org/content/repositories/snapshots/ on each push to main. To use snapshots, add the url as a maven repository and depend on latest-SNAPSHOT:

kotlin logokotlin
// settings.gradle.kts pluginManagement { repositories { gradlePluginPortal() maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/") } } // build.gradle.kts plugins { id("io.deepmedia.tools.knee") version "latest-SNAPSHOT" }

More

Subscribe to the DeepMedia Newsletter

The latest news about DeepMedia products, open source projects and software development at our company.

By clicking “Subscribe”, you agree that DeepMedia may use your email address to send you newsletters, including commercial communications, and to process your personal data for this purpose. You agree that DeepMedia may process said data using third-party services for this purpose in accordance with the DeepMedia Privacy Policy. You can revoke this consent at any time using the unsubscribe link included in each email or by writing at contact@deepmedia.io.