2024-07-12 09:55:30 +09:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2024-07-15 13:14:21 +09:00
|
|
|
id 'org.springframework.boot' version '3.2.7'
|
|
|
|
id 'io.spring.dependency-management' version '1.1.0'
|
2024-07-12 09:55:30 +09:00
|
|
|
}
|
|
|
|
|
2024-07-15 13:14:21 +09:00
|
|
|
group = 'io.openvidu'
|
2024-07-12 09:55:30 +09:00
|
|
|
version = '0.0.1-SNAPSHOT'
|
2024-07-15 13:14:21 +09:00
|
|
|
description = 'Basic server application built for Java with Spring Boot'
|
|
|
|
sourceCompatibility = '17'
|
|
|
|
targetCompatibility = '17'
|
2024-07-12 09:55:30 +09:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
2024-07-15 13:14:21 +09:00
|
|
|
implementation 'org.openpnp:opencv:4.9.0-0'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
|
|
implementation 'io.livekit:livekit-server:0.5.11'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
|
|
implementation 'mysql:mysql-connector-java:8.0.33'
|
2024-07-19 14:28:26 +09:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-websocket'
|
2024-07-12 09:55:30 +09:00
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
2024-07-15 13:14:21 +09:00
|
|
|
implementation group: 'io.livekit', name: 'livekit-server', version: '0.6.1'
|
2024-07-16 13:20:16 +09:00
|
|
|
implementation 'org.projectlombok:lombok'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok'
|
2024-07-18 13:10:49 +09:00
|
|
|
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.4.0'
|
|
|
|
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.5'
|
|
|
|
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.5'
|
|
|
|
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.5'
|
2024-07-16 13:20:16 +09:00
|
|
|
|
2024-07-18 13:10:49 +09:00
|
|
|
implementation group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '4.0.5'
|
2024-07-15 13:14:21 +09:00
|
|
|
|
2024-07-12 09:55:30 +09:00
|
|
|
}
|
|
|
|
|
2024-07-15 13:14:21 +09:00
|
|
|
test {
|
2024-07-12 09:55:30 +09:00
|
|
|
useJUnitPlatform()
|
2024-07-16 13:20:16 +09:00
|
|
|
}
|