Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4f038c3bad8a1132e0952446d71697fca01e05b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
apply plugin: 'application'

dependencies {
	compile "org.eclipse.platform:org.eclipse.core.runtime:$versions.core_runtime"
	compile "org.eclipse.emf:org.eclipse.emf.common:$versions.xtext"
	compile "org.eclipse.emf:org.eclipse.emf.ecore:$versions.xtext"
	compile "org.eclipse.emf:org.eclipse.emf.ecore.xmi:$versions.xtext"
}

ext.classpath = sourceSets.main.runtimeClasspath

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

distTar.enabled = false

Back to the top