aboutsummaryrefslogtreecommitdiffstats
path: root/gradle/mwe2.gradle
blob: 5fd531260051c1cd1258a31a628d362e7d08a0ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
configurations {
	mwe2 {
		extendsFrom compile
	}
}

dependencies {
	mwe2 "org.eclipse.emf:org.eclipse.emf.mwe2.launch:${mwe2Version}"
}

eclipse.classpath.plusConfigurations += [configurations.mwe2]