aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/language-semantics/build.gradle.kts
blob: 22c039852c31322ed2f62a8c8bebff0b14759efc (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 {
	api(libs.eclipseCollections.api)
	api(project(":refinery-language"))
	api(project(":refinery-store"))
	api(project(":refinery-store-query"))
	api(project(":refinery-store-reasoning"))
	implementation(libs.eclipseCollections)
	testImplementation(testFixtures(project(":refinery-language")))
}