build.gradle 1.8 KB

1234567891011121314151617181920212223242526272829
  1. description = "maxkey-boot-monitor"
  2. //add support for Java
  3. apply plugin: 'java'
  4. dependencies {
  5. implementation project(":maxkey-common")
  6. implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf', version: "${springBootVersion}"
  7. implementation group: 'org.springframework.boot', name: 'spring-boot-starter-security', version: "${springBootVersion}"
  8. implementation group: 'org.springframework.security', name: 'spring-security-config', version: '5.5.1'
  9. implementation group: 'de.codecentric', name: 'spring-boot-admin-server', version: "${springbootadminVersion}"
  10. implementation group: 'de.codecentric', name: 'spring-boot-admin-server-ui', version: "${springbootadminVersion}"
  11. implementation group: 'de.codecentric', name: 'spring-boot-admin-starter-server', version: "${springbootadminVersion}"
  12. implementation group: 'org.thymeleaf', name: 'thymeleaf', version: "${thymeleafVersion}"
  13. implementation group: 'org.thymeleaf', name: 'thymeleaf-spring5', version: "${thymeleafVersion}"
  14. implementation group: 'io.projectreactor.netty', name: 'reactor-netty', version: "${reactornettyVersion}"
  15. implementation group: 'io.projectreactor.netty', name: 'reactor-netty-http', version: "${reactornettyVersion}"
  16. implementation group: 'io.projectreactor.netty', name: 'reactor-netty-core', version: "${reactornettyVersion}"
  17. implementation group: 'io.projectreactor.addons', name: 'reactor-extra', version: "${reactorextraVersion}"
  18. implementation group: 'io.netty', name: 'netty-all', version: "${nettyVersion}"
  19. implementation group: 'com.hazelcast', name: 'hazelcast', version: "${hazelcastVersion}"
  20. implementation group: 'org.attoparser', name: 'attoparser', version: "${attoparserVersion}"
  21. implementation group: 'org.unbescape', name: 'unbescape', version: "${unbescapeVersion}"
  22. }