Skip to content

Commit

Permalink
Bring back spring stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
chenj-hub committed Aug 14, 2024
1 parent 3977b90 commit e438475
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,27 @@ IO_GRPC_MODULES = [
]

COM_AWS_MODULES = [
"s3",
"autoscaling",
"core",
"ec2",
"secretsmanager",
"sns",
"ssm",
"s3",
]

ORG_SPRING_MODULES = [
"spring-beans",
"spring-core",
"spring-context",
"spring-web",
]

ORG_SPRING_BOOT_MODULES = [
"spring-boot-autoconfigure",
"spring-boot",
"spring-boot-starter-web",
"spring-boot-starter-thymeleaf",
]

def buildfarm_init(name = "buildfarm"):
Expand Down Expand Up @@ -86,6 +105,7 @@ def buildfarm_init(name = "buildfarm"):
"org.slf4j:slf4j-simple:2.0.9",
"com.googlecode.json-simple:json-simple:1.1.1",
"com.jayway.jsonpath:json-path:2.8.0",
"io.github.lognet:grpc-spring-boot-starter:4.5.4",
"org.bouncycastle:bcprov-jdk15on:1.70",
"net.jcip:jcip-annotations:1.0",
] + ["io.netty:netty-%s:4.1.97.Final" % module for module in IO_NETTY_MODULES] +
Expand All @@ -108,6 +128,9 @@ def buildfarm_init(name = "buildfarm"):
"org.openjdk.jmh:jmh-core:1.37",
"org.openjdk.jmh:jmh-generator-annprocess:1.37",
"org.redisson:redisson:3.23.4",
] + ["org.springframework.boot:%s:2.7.4" % module for module in ORG_SPRING_BOOT_MODULES] +
["org.springframework:%s:5.3.23" % module for module in ORG_SPRING_MODULES] +
[
"org.threeten:threetenbp:1.6.8",
"org.xerial:sqlite-jdbc:3.34.0",
"org.jetbrains:annotations:16.0.2",
Expand Down

0 comments on commit e438475

Please sign in to comment.