-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle
23 lines (22 loc) · 1.04 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
rootProject.name = 'obs-websocket-java'
include 'client'
include 'example'
include 'messagegenerator'
dependencyResolutionManagement {
versionCatalogs {
libs {
library('lombok', 'org.projectlombok:lombok:1.18.24')
library('websocket', 'org.eclipse.jetty.websocket:websocket-jetty-client:11.0.13')
library('gson', 'com.google.code.gson:gson:2.9.0')
library('sl4j-api', 'org.slf4j:slf4j-api:2.0.3')
library('sl4j-simple', 'org.slf4j:slf4j-simple:2.0.3')
library('javapoet', 'com.squareup:javapoet:1.13.0')
library('commons-io', 'commons-io:commons-io:2.11.0')
library('junit-jupiter-api', 'org.junit.jupiter:junit-jupiter-api:5.9.0')
library('junit-jupiter-engine', 'org.junit.jupiter:junit-jupiter-engine:5.9.0')
library('assertj-core', 'org.assertj:assertj-core:3.23.1')
library('jsonassert', 'org.skyscreamer:jsonassert:1.5.1')
library('mockito-core', 'org.mockito:mockito-core:4.8.0')
}
}
}