Search Gradle plugins

hnct.build

Provides project structure for multiple projects build. Developed for HNCT Company.

https://gitlab.com/hnct.build/plugin

Sources: [Coming soon]

Version 1.3.11-beta2

Created 08 July 2020.

Allow easily setting up dependencies among source sets from multiple projects. Allow easily configure languages to be used, either Scala or Java. Shorten syntax to configure repository dependency. Contain distribution tasks that package all dependencies into lib folder.

Add this plugin to your build using the plugins DSL:

plugins {
  id("hnct.build") version "1.3.11-beta2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("hnct.build:hnct.build.gradle.plugin:1.3.11-beta2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("hnct.build")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("hnct.build:hnct.build.gradle.plugin:1.3.11-beta2")
      }
    }
    
    apply(plugin = "hnct.build")
  • Applying plugins to all subprojects .