Search Gradle plugins

com.innogames.tools.hosts-editor

A Gradle plugin that creates a new hosts file with defined entries based on your local hosts file.

https://github.com/innogames/hosts-editor

Sources: https://github.com/innogames/hosts-editor

Version 1.0.1 (latest)

Created 09 March 2018.

A Gradle plugin that creates a new hosts file with defined entries based on your local hosts file.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.innogames.tools.hosts-editor") version "1.0.1"
}

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("com.innogames.tools.hosts-editor:com.innogames.tools.hosts-editor.gradle.plugin:1.0.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.innogames.tools.hosts-editor")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.innogames.tools.hosts-editor:com.innogames.tools.hosts-editor.gradle.plugin:1.0.1")
      }
    }
    
    apply(plugin = "com.innogames.tools.hosts-editor")
  • Applying plugins to all subprojects .