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

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

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

Back to the top