Search Gradle plugins

org.frege-lang

Enabling Frege for compilation, testing, documentation, and supporting tools.

https://github.com/Frege/frege-gradle-plugin

Sources: https://github.com/Frege/frege-gradle-plugin

Version 0.8 (latest)

0.8

Created 05 May 2016.

Enabling Frege for compilation, testing, documentation, and supporting tools.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.frege-lang") version "0.8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.frege-lang:frege-gradle-plugin:0.8")
      }
    }
    
    apply(plugin = "org.frege-lang")
  • Applying plugins to all subprojects .