Search Gradle plugins

Version 0.1.0

0.1.0

Created 26 September 2017.

Gradle plugin for running Fortify static code analysis.

Add this plugin to your build using the plugins DSL:

plugins {
  id("cz.swsamuraj.fortify") version "0.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.cz.swsamuraj:gradle-fortify-plugin:0.1.0")
      }
    }
    
    apply(plugin = "cz.swsamuraj.fortify")
  • Applying plugins to all subprojects .