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

configurations {
	mwe2 {
		extendsFrom implementation
	}
}

dependencies {
	mwe2 libs.mwe2.launch
}

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