Search Gradle plugins

com.mattwhipple.emacs-jdee

Gradle Plugin to generate JDEE prj.el files for emacs

https://github.com/mwhipple/gradle-emacs-jdee

Version 0.1.0 (latest)

0.1.0

Created 11 April 2016.

Gradle plugin to generate JDEE prj.el file for emacs

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.mattwhipple.emacs-jdee") version "0.1.0"
}

See also:

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