Clavardator, mais sur le web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 544B

123456789101112131415161718192021222324252627282930
  1. plugins {
  2. id 'java'
  3. id 'war'
  4. }
  5. group 'fr.insa.clavardator.web'
  6. version '1.0-SNAPSHOT'
  7. repositories {
  8. mavenCentral()
  9. }
  10. ext {
  11. junitVersion = '5.7.0'
  12. }
  13. sourceCompatibility = 1.8
  14. targetCompatibility = 1.8
  15. dependencies {
  16. compileOnly('javax.servlet:javax.servlet-api:4.0.1')
  17. compileOnly('javax.websocket:javax.websocket-api:1.1')
  18. testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
  19. testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
  20. }
  21. test {
  22. useJUnitPlatform()
  23. }