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

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

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

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

Back to the top