build.gradle 1.8 KB
Newer Older
M
MaxKey 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
description = "maxkey-boot-monitor"

//add support for Java
apply plugin: 'java'

dependencies {
    implementation project(":maxkey-common")
    
    implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf', version: "${springBootVersion}"
    implementation group: 'org.springframework.boot', name: 'spring-boot-starter-security', version: "${springBootVersion}"
    implementation group: 'org.springframework.security', name: 'spring-security-config', version: '5.5.1'
    
    implementation group: 'de.codecentric', name: 'spring-boot-admin-server', version: "${springbootadminVersion}"
    implementation group: 'de.codecentric', name: 'spring-boot-admin-server-ui', version: "${springbootadminVersion}"
    implementation group: 'de.codecentric', name: 'spring-boot-admin-starter-server', version: "${springbootadminVersion}"
    
    implementation group: 'org.thymeleaf', name: 'thymeleaf', version: "${thymeleafVersion}"
    implementation group: 'org.thymeleaf', name: 'thymeleaf-spring5', version: "${thymeleafVersion}"
    
   	implementation group: 'io.projectreactor.netty', name: 'reactor-netty', version: "${reactornettyVersion}"
   	implementation group: 'io.projectreactor.netty', name: 'reactor-netty-http', version: "${reactornettyVersion}"
   	implementation group: 'io.projectreactor.netty', name: 'reactor-netty-core', version: "${reactornettyVersion}"
   	implementation group: 'io.projectreactor.addons', name: 'reactor-extra', version: "${reactorextraVersion}"
   	
   	implementation group: 'io.netty', name: 'netty-all', version: "${nettyVersion}"
   	implementation group: 'com.hazelcast', name: 'hazelcast', version: "${hazelcastVersion}"
   	implementation group: 'org.attoparser', name: 'attoparser', version: "${attoparserVersion}"
   	implementation group: 'org.unbescape', name: 'unbescape', version: "${unbescapeVersion}"
}