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.

1234567891011121314151617181920212223
  1. plugins {
  2. id 'java'
  3. }
  4. group 'org.eseb'
  5. version '1.0-SNAPSHOT'
  6. repositories {
  7. mavenCentral()
  8. }
  9. dependencies {
  10. compile 'com.github.cliftonlabs:json-simple:3.1.1'
  11. }
  12. dependencies {
  13. testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
  14. testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
  15. }
  16. test {
  17. useJUnitPlatform()
  18. }