build.gradle 245 B

123456789101112
  1. plugins {
  2. id('java-platform')
  3. }
  4. group = 'com.ruoyi.platform'
  5. // allow the definition of dependencies to other platforms like the JUnit 5 BOM
  6. javaPlatform.allowDependencies()
  7. dependencies {
  8. api(platform('org.junit:junit-bom:5.8.2'))
  9. }