-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsettings.gradle
More file actions
30 lines (29 loc) · 1.32 KB
/
settings.gradle
File metadata and controls
30 lines (29 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
rootProject.name='sonar-plugin-api'
include 'plugin-api'
include 'check-api'
include 'test-fixtures'
include 'manifest'
include 'shared'
dependencyResolutionManagement {
versionCatalogs {
libs {
version('slf4j', '1.7.30')
library('commons-io', 'commons-io:commons-io:2.16.1')
library('commons-lang3', 'org.apache.commons:commons-lang3:3.20.0')
library('commons-text', 'org.apache.commons:commons-text:1.12.0')
library('commons-validator', 'commons-validator:commons-validator:1.10.0')
library('guava', 'com.google.guava:guava:33.5.0-jre')
library('gson', 'com.google.code.gson:gson:2.11.0')
library('jsr305', 'com.google.code.findbugs:jsr305:3.0.2')
library('junit4', 'junit:junit:4.13.2')
library('junit5', 'org.junit.jupiter:junit-jupiter-api:5.10.3')
library('jupiter-engine', 'org.junit.jupiter:junit-jupiter-engine:5.10.3')
library('jupiter-vintage-engine', 'org.junit.vintage:junit-vintage-engine:5.10.3')
library('slf4j', 'org.slf4j', 'slf4j-api').versionRef('slf4j')
library('logback-classic', 'ch.qos.logback:logback-classic:1.2.13')
library('assertj', 'org.assertj:assertj-core:3.26.0')
library('mockito', 'org.mockito:mockito-core:5.12.0')
library('junit-dataprovider', 'com.tngtech.java:junit-dataprovider:1.13.1')
}
}
}