Server HTTP + WebSocket + Serveur TCP pour transmettre la température du thermometre dans ma cuisine
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

build.gradle 344B

1234567891011121314151617181920
  1. plugins {
  2. id 'java'
  3. }
  4. group 'org.example'
  5. version '1.0-SNAPSHOT'
  6. repositories {
  7. mavenCentral()
  8. }
  9. dependencies {
  10. testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
  11. testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
  12. implementation 'io.undertow:undertow-core:2.1.0.Final'
  13. }
  14. test {
  15. useJUnitPlatform()
  16. }