From 573081ed123c52ecb8cdd2426e870e8d64bc2cb1 Mon Sep 17 00:00:00 2001 From: Galder ZamarrenĖƒo Date: Thu, 17 Oct 2013 18:47:35 +0200 Subject: Initial commit --- build.gradle | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 build.gradle (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..cefc288 --- /dev/null +++ b/build.gradle @@ -0,0 +1,36 @@ +apply plugin: FregePlugin +apply plugin: "idea" +apply plugin: "java" + +class FregePlugin implements Plugin { + void apply(Project project) { + // Add the 'greeting' extension object + project.extensions.create("frege", FregePluginExtension) + // Add a task that uses the configuration + project.task('hello') << { + + + "java -cp " + "frege.compiler.Main" + + + + } + } +} + +class FregePluginExtension { + +} + +repositories { + + flatDir name:"frege-lib", dirs:"lib" + +} + +dependencies { + + compile ":frege:3.21.232-g7b05453" + +} \ No newline at end of file -- cgit