aboutsummaryrefslogtreecommitdiffstats
path: root/buildSrc/src/main/groovy/refinery-mwe2.gradle
blob: c7f15e820f8410e4eea44df0de01d6a83a701be5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
plugins {
	id 'eclipse'
	id 'refinery-java-conventions'
}

configurations {
	mwe2 {
		extendsFrom implementation
	}
}

dependencies {
	mwe2 libs.mwe2.launch
}

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