aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query-viatra/build.gradle.kts
blob: d7a37f119d9bc61f7cdb03e1bdf300c4bb66be96 (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-query"))
	testImplementation(libs.slf4j.simple)
	testImplementation(libs.slf4j.log4j)
}