mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-02 12:50:55 +00:00
22 lines
322 B
Plaintext
22 lines
322 B
Plaintext
rootProject.name = "pork"
|
|
|
|
include(
|
|
":common",
|
|
":ast",
|
|
":parser",
|
|
":frontend",
|
|
":evaluator",
|
|
":tool"
|
|
)
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
create("libs") {
|
|
version("clikt", "4.2.0")
|
|
|
|
library("clikt", "com.github.ajalt.clikt", "clikt")
|
|
.versionRef("clikt")
|
|
}
|
|
}
|
|
}
|