aboutsummaryrefslogtreecommitdiff
path: root/src/functionalTest/java/ch/fhnw/thga/gradleplugins/fregeproject/Build.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/functionalTest/java/ch/fhnw/thga/gradleplugins/fregeproject/Build.java')
-rw-r--r--src/functionalTest/java/ch/fhnw/thga/gradleplugins/fregeproject/Build.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/functionalTest/java/ch/fhnw/thga/gradleplugins/fregeproject/Build.java b/src/functionalTest/java/ch/fhnw/thga/gradleplugins/fregeproject/Build.java
new file mode 100644
index 0000000..60fc835
--- /dev/null
+++ b/src/functionalTest/java/ch/fhnw/thga/gradleplugins/fregeproject/Build.java
@@ -0,0 +1,13 @@
+package ch.fhnw.thga.gradleplugins.fregeproject;
+
+import java.io.IOException;
+import java.nio.file.Path;
+
+import org.gradle.api.Project;
+
+public interface Build
+{
+ Build fregeCompiler(Path fregeCompiler);
+ Build settingsFile(String settingsFile);
+ Project build() throws IOException;
+}