VladislavSumin / vs-core

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Available libs

Installation

Plugin installation

On project level

For work as project:

// settings.gradle.kts
pluginManagement {
    includeBuild("../vs-core/build-script")
    plugins {
        id("ru.vs.empty_plugin") version "<any version>"
    }
}

For work as library:

// settings.gradle.kts
pluginManagement {
    plugins {
        id("ru.vs.empty_plugin") version "<version>"
    }
    repositories {
        mavenLocal()
    }
}

Or on build script level

For work as project:

// settings.gradle.kts
includeBuild("../../vs-core/build-script")
// build.gradle.kts
dependencies {
    implementation("ru.vs:build-script:<any version>")
}

For work as library:

// settings.gradle.kts
dependencyResolutionManagement {
    repositories {
        mavenLocal()
    }
}
// build.gradle.kts
dependencies {
    implementation("ru.vs:build-script:<version>")
}

Library installation

// settings.gradle.kts

// For work as project
includeBuild("../vs-core")

// OR
// For work as library
repositories {
    mavenLocal()
}

About


Languages

Language:Kotlin 100.0%