build.gradle 878 B

12345678910111213141516171819202122232425262728293031
  1. plugins {
  2. id 'org.springframework.boot' version '2.2.6.RELEASE'
  3. id 'io.spring.dependency-management' version '1.0.9.RELEASE'
  4. id 'java'
  5. id 'war'
  6. }
  7. group = 'com.dbs'
  8. version = '0.0.1-SNAPSHOT'
  9. sourceCompatibility = '1.8'
  10. repositories {
  11. mavenCentral()
  12. maven { url "https://code.lds.org/nexus/content/groups/main-repo"} /* oracle ref url*/
  13. }
  14. dependencies {
  15. implementation 'org.springframework.boot:spring-boot-starter-web'
  16. providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
  17. testImplementation('org.springframework.boot:spring-boot-starter-test') {
  18. exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
  19. }
  20. implementation("org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.1")
  21. implementation("org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4.1:1.16")
  22. implementation("com.oracle:ojdbc6:11.2.0.3")
  23. }
  24. test {
  25. useJUnitPlatform()
  26. }