Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c466fd88241dc9d49fc27d828dbae7d7d2e56af5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
plugins {
	id 'java'
}

apply from: "$rootDir/gradle/publish.gradle"

dependencies {
	compile project(':plugins:org.eclipse.etrice.core.common')
	compile project(':plugins:org.eclipse.etrice.core.room')
	compile project(':plugins:org.eclipse.etrice.core.genmodel')
	compile project(':plugins:org.eclipse.etrice.core.genmodel.fsm')
	compile project(':plugins:org.eclipse.etrice.core.config')
	compile project(':plugins:org.eclipse.etrice.generator')
	
	compile "org.eclipse.xtext:org.eclipse.xtext:$xtext_version"
}

sourceSets {
	main {
		java {
			srcDirs = ['src', 'xtend-gen']
		}
	}
}

Back to the top