aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-reasoning-smt/build.gradle.kts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2023-12-01 19:19:12 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2024-04-07 14:55:44 +0200
commitbc1be69d88600d87df55d84f4591292d4c7656c1 (patch)
tree77aed2a45394e182603d2b36700384132da33655 /subprojects/store-reasoning-smt/build.gradle.kts
parentchore(z3): bump to z3 4.12.6 (diff)
downloadrefinery-bc1be69d88600d87df55d84f4591292d4c7656c1.tar.gz
refinery-bc1be69d88600d87df55d84f4591292d4c7656c1.tar.zst
refinery-bc1be69d88600d87df55d84f4591292d4c7656c1.zip
feat: subproject for z3 integration
Diffstat (limited to 'subprojects/store-reasoning-smt/build.gradle.kts')
-rw-r--r--subprojects/store-reasoning-smt/build.gradle.kts15
1 files changed, 15 insertions, 0 deletions
diff --git a/subprojects/store-reasoning-smt/build.gradle.kts b/subprojects/store-reasoning-smt/build.gradle.kts
new file mode 100644
index 00000000..4a784e42
--- /dev/null
+++ b/subprojects/store-reasoning-smt/build.gradle.kts
@@ -0,0 +1,15 @@
1/*
2 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
3 *
4 * SPDX-License-Identifier: EPL-2.0
5 */
6
7plugins {
8 id("tools.refinery.gradle.java-library")
9}
10
11dependencies {
12 api(project(":refinery-store-reasoning"))
13 implementation(libs.refinery.z3)
14 testImplementation(project(":refinery-store-query-interpreter"))
15}