aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query-viatra/build.gradle
blob: 32a23fe72f5027ffecd6648ae6394b99803305bc (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
	implementation libs.viatra
	api project(':refinery-store')
	testImplementation libs.slf4j.simple
	testImplementation libs.slf4j.log4j
}