5e7c2820a4
Bumps [com.google.guava:guava](https://github.com/google/guava) from 31.1-jre to 33.5.0-jre. - [Release notes](https://github.com/google/guava/releases) - [Commits](https://github.com/google/guava/commits) --- updated-dependencies: - dependency-name: com.google.guava:guava dependency-version: 33.5.0-jre dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
626 B
Groovy
25 lines
626 B
Groovy
|
|
sourceSets {
|
|
example
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':conductor-annotations')
|
|
api 'com.google.guava:guava:33.5.0-jre'
|
|
api 'com.squareup:javapoet:1.13.0'
|
|
api 'com.github.jknack:handlebars:4.5.0'
|
|
api "com.google.protobuf:protobuf-java:${revProtoBuf}"
|
|
api 'jakarta.annotation:jakarta.annotation-api:2.1.1'
|
|
api gradleApi()
|
|
|
|
exampleImplementation sourceSets.main.output
|
|
exampleImplementation project(':conductor-annotations')
|
|
}
|
|
|
|
task exampleJar(type: Jar) {
|
|
archiveFileName = 'example.jar'
|
|
from sourceSets.example.output.classesDirs
|
|
}
|
|
|
|
testClasses.finalizedBy(exampleJar)
|