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

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

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