plugins { id 'org.springframework.boot' version '2.4.3' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' } group = 'com.github.xiaohaoo' version = '1.0' sourceCompatibility = '11' configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenCentral() } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-data-mongodb' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.elasticsearch.client:elasticsearch-rest-high-level-client:7.7.0' runtimeOnly 'mysql:mysql-connector-java' compileOnly 'org.projectlombok:lombok' developmentOnly 'org.springframework.boot:spring-boot-devtools' annotationProcessor 'org.projectlombok:lombok' testImplementation 'org.springframework.boot:spring-boot-starter-test' testAnnotationProcessor 'org.projectlombok:lombok' testCompileOnly 'org.projectlombok:lombok' implementation 'com.microsoft.onnxruntime:onnxruntime:1.8.1' implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.4' implementation 'com.baomidou:mybatis-plus-boot-starter:3.2.0' } test { useJUnitPlatform() }