Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.abstractexec.behavior/build.gradle')
-rw-r--r--plugins/org.eclipse.etrice.abstractexec.behavior/build.gradle21
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.abstractexec.behavior/build.gradle b/plugins/org.eclipse.etrice.abstractexec.behavior/build.gradle
new file mode 100644
index 000000000..c15063587
--- /dev/null
+++ b/plugins/org.eclipse.etrice.abstractexec.behavior/build.gradle
@@ -0,0 +1,21 @@
+plugins {
+ id 'java'
+}
+
+dependencies {
+ compile project(':plugins:org.eclipse.etrice.core.common')
+ compile project(':plugins:org.eclipse.etrice.core.fsm')
+ compile project(':plugins:org.eclipse.etrice.core.genmodel.fsm')
+ compile project(':plugins:org.eclipse.etrice.generator.fsm')
+
+ compile "org.eclipse.platform:org.eclipse.core.runtime:$core_runtime_version"
+ compile "org.eclipse.xtext:org.eclipse.xtext:$xtext_version"
+}
+
+sourceSets {
+ main {
+ java {
+ srcDirs = ['src']
+ }
+ }
+} \ No newline at end of file

Back to the top