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

dependencies {
	compile project(':plugins:org.eclipse.etrice.core.common')

	compile "org.eclipse.xtext:org.eclipse.xtext:$xtext_version"
}

sourceSets {
	main {
		java {
			srcDirs = ['src', 'src-gen', 'xtend-gen']
		}
		resources {
			srcDirs = ['src', 'src-gen']
			include '**/*.xtextbin', '**/*.tokens'
		}
	}
}

Back to the top