Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0b785a6fe3afad8ed8e70131bf91d1eec4bb3e97 (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
25
26
27
apply plugin: 'application'

configurations {
	archive
}

dependencies {
	api project(':plugins:org.eclipse.etrice.core.room')
	api project(':plugins:org.eclipse.etrice.core.etphys')
	api project(':plugins:org.eclipse.etrice.core.etmap')
	api project(':plugins:org.eclipse.etrice.core.fsm')
	api project(':plugins:org.eclipse.etrice.core.genmodel')
	api project(':plugins:org.eclipse.etrice.generator')
	api project(':plugins:org.eclipse.etrice.generator.fsm')
	api project(':plugins:org.eclipse.etrice.generator.config')
	
	api "org.eclipse.xtend:org.eclipse.xtend.lib:$versions.xtext"
	api "org.eclipse.xtext:org.eclipse.xtext:$versions.xtext"
}

artifacts {
	archive distZip
}

mainClassName = 'org.eclipse.etrice.generator.c.Main'

distTar.enabled = false

Back to the top