From 47f99d65a09660863cb5d6b25b239ead3389f3ac Mon Sep 17 00:00:00 2001 From: Thibault Gagnaux Date: Wed, 2 Feb 2022 18:50:13 +0100 Subject: feat: simplifies the whole gradle plugin - the `compileFregeTask` has a new optional input called `mainModuleName`. If it is set, it and only its dependencies will be compiled, otherwise all `.fr`files in the `mainSourceDir`will be compiled. - the internal `DependencyFregeTask` is deleted because it was only used by the vscode plugin and I decided to remove this gradle plugin as a dependency. - an example project folder was added to test the plugin manually. --- example-project/build.gradle | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 example-project/build.gradle (limited to 'example-project/build.gradle') diff --git a/example-project/build.gradle b/example-project/build.gradle new file mode 100644 index 0000000..6fefaec --- /dev/null +++ b/example-project/build.gradle @@ -0,0 +1,10 @@ +plugins { + id 'ch.fhnw.thga.frege' version '1.7.0-alpha' +} + +frege { + version = '3.25.84' + release = '3.25alpha' + mainModule = 'ch.fhnw.thga.Test' + replSource = 'ch.fhnw.thga.Test' +} \ No newline at end of file -- cgit