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

plugins {
	id("tools.refinery.gradle.java-library")
	// Vendor code from Eclipse VIATRA is maintained by the VIATRA project,
	// so we don't need to keep track of coverage ourselves.
	// Our own modifications are covered by tests in the `store-query-viatra` subproject.
	id("tools.refinery.gradle.skip-coverage")
}

dependencies {
	implementation(libs.slf4j.log4j)
	implementation(libs.eclipseCollections)
	implementation(libs.eclipseCollections.api)
}