aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/language-semantics/build.gradle.kts
blob: 38cd9e0db6a8fe871210e373a231dfac8cf2e853 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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"))
	testImplementation(testFixtures(project(":refinery-language")))
}