aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/language-semantics/build.gradle.kts
blob: 689f621e9c82a23f5f7bf3137f6e801e7aef00ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */

plugins {
	id("tools.refinery.gradle.java-library")
}

dependencies {
	api(libs.eclipseCollections.api)
	api(project(":refinery-language"))
	api(project(":refinery-store"))
	api(project(":refinery-store-query"))
	api(project(":refinery-store-reasoning"))
	implementation(project(":refinery-store-reasoning-scope"))
	runtimeOnly(libs.eclipseCollections)
	testImplementation(project(":refinery-store-dse-visualization"))
	testImplementation(project(":refinery-store-query-interpreter"))
	testImplementation(testFixtures(project(":refinery-language")))
}