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

dependencies {
	mwe2 libs.mwe2.launch
}

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