/* * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors * * SPDX-License-Identifier: EPL-2.0 */ plugins { id("tools.refinery.gradle.java-library") } mavenArtifact { name = "Store DSE" description = "Design-space explorer for the model store" } dependencies { api(project(":refinery-store-query")) implementation(project(":refinery-store-dse-visualization")) implementation(libs.eclipseCollections.api) runtimeOnly(libs.eclipseCollections) testImplementation(project(":refinery-store-query-interpreter")) }