Skip to content

Commit

Permalink
Grace: optimize shell dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Jan 24, 2024
1 parent 601f695 commit f515116
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions grace-shell/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,33 @@ ext {

configurations {
dependenciesBom
runtimeClasspath {
exclude group: 'commons-codec', module: 'commons-codec'
exclude group: 'com.github.ben-manes.caffeine', module: 'caffeine'
exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
exclude group: 'jakarta.annotation', module: 'jakarta.annotation-api'
exclude group: 'jakarta.inject', module: 'jakarta.inject-api'
exclude group: 'javax.annotation', module: 'javax.annotation-api'
exclude group: 'javax.inject', module: 'javax.inject'
exclude group: 'javax.persistence', module: 'javax.persistence-api'
exclude group: 'javax.transaction', module: 'javax.transaction-api'
exclude group: 'org.checkerframework', module: 'checker-qual'
exclude group: 'org.apache.ant', module: 'ant-antlr'
exclude group: 'org.apache.ant', module: 'ant-junit'
exclude group: 'org.apache.commons', module: 'commons-compress'
exclude group: 'org.codehaus.groovy', module: 'groovy-groovydoc'
exclude group: 'org.codehaus.groovy', module: 'groovy-jmx'
exclude group: 'org.codehaus.plexus', module: 'plexus-classworlds'
exclude group: 'org.codehaus.plexus', module: 'plexus-component-annotations'
exclude group: 'org.codehaus.plexus', module: 'plexus-sec-dispatcher'
exclude group: 'org.javassist', module: 'javassist'
exclude group: 'org.springframework', module: 'spring-aop'
exclude group: 'org.springframework', module: 'spring-expression'
exclude group: 'org.springframework', module: 'spring-jcl'
exclude group: 'org.springframework', module: 'spring-tx'
exclude group: 'org.springframework', module: 'spring-web'
exclude group: 'org.springframework.boot', module: 'spring-boot-autoconfigure'
}
}

dependencies {
Expand Down

0 comments on commit f515116

Please sign in to comment.