foundation/foundation-core/build.gradle.kts

13 lines
364 B
Plaintext
Raw Normal View History

2023-01-29 03:38:57 +00:00
plugins {
id("gay.pizza.foundation.concrete-plugin")
2023-01-29 03:38:57 +00:00
}
2021-12-21 08:58:44 +00:00
dependencies {
2021-12-22 08:11:22 +00:00
// TODO: might be able to ship all dependencies in core? are we duplicating classes in JARs?
implementation("software.amazon.awssdk:s3:2.19.31")
2021-12-24 08:38:57 +00:00
implementation("org.quartz-scheduler:quartz:2.3.2")
implementation("com.google.guava:guava:31.1-jre")
2023-02-05 06:59:00 +00:00
api(project(":common-plugin"))
2021-12-21 08:58:44 +00:00
}