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

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

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