Created
November 8, 2012 01:46
-
-
Save xconnecting/4035959 to your computer and use it in GitHub Desktop.
Sample: use Gradle custom plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'eclipse' | |
apply plugin: 'maven' | |
apply plugin: 'greeting' | |
buildscript { | |
repositories { mavenLocal() } | |
dependencies { classpath 'com.example:greet:1.0-SNAPSHOT' } | |
} | |
task hi(type:com.example.GreetingTask){ | |
greeting = 'Hi' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment