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

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

mavenArtifact {
	name = "Query Interpreter"
}

dependencies {
	implementation(libs.slf4j.log4j)
	// Code in this subproject inherits from Eclipse Collection implementation classes, so this can't be `runtimeOnly`.
	implementation(libs.eclipseCollections)
	implementation(libs.eclipseCollections.api)
}