/* * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors * * 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")) } }