aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query-viatra/build.gradle
blob: c12b48fea9984ddece16a2bd0342b17ef1fba4c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
plugins {
	id 'refinery-java-library'
}

configurations.testRuntimeClasspath {
	// VIATRA requires log4j 1.x, but we use log4j-over-slf4j instead
	exclude group: 'log4j', module: 'log4j'
}

dependencies {
	implementation libs.ecore
	api libs.viatra
	api project(':refinery-store')
	testImplementation libs.slf4j.simple
	testImplementation libs.slf4j.log4j
}