Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e44d587c177c62ef1daee1fac0f188ce46e3aa5e (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 'application'
}

dependencies {
	compile "org.eclipse.platform:org.eclipse.core.runtime:$core_runtime_version"
	compile "org.eclipse.emf:org.eclipse.emf.common:$xtext_version"
	compile "org.eclipse.emf:org.eclipse.emf.ecore:$xtext_version"
	compile "org.eclipse.emf:org.eclipse.emf.ecore.xmi:$xtext_version"
}

sourceSets {
	main {
		java {
			srcDirs = ['src']
		}
	}
}

ext.classpath = sourceSets.main.runtimeClasspath

mainClassName = 'org.eclipse.etrice.etunit.converter.EtUnitReportConverter'

distTar.enabled = false

Back to the top