aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query-interpreter/build.gradle.kts
blob: d463fac93b65d1b4025afc7a3e611767dd05cc4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * 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(project(":refinery-interpreter"))
	api(project(":refinery-interpreter-localsearch"))
	api(project(":refinery-interpreter-rete"))
	api(project(":refinery-interpreter-rete-recipes"))
	api(project(":refinery-store-query"))
	implementation(libs.ecore)
	implementation(libs.slf4j.log4j)
}

tasks {
	withType(Jar::class) {
		// Make sure we include external project notices.
		from(layout.projectDirectory.file("NOTICE.md"))
	}
}