No Description
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 586B

12345678910111213141516171819202122232425262728293031
  1. plugins {
  2. id 'java'
  3. id 'war'
  4. }
  5. group 'com.example'
  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. implementation 'com.google.code.gson:gson:2.8.6'
  18. testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
  19. testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
  20. //implementation files('build/libs/Clavardage-1.0.jar')
  21. }
  22. test {
  23. useJUnitPlatform()
  24. }