forked from RedHatInsights/rhsm-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
62 lines (58 loc) · 3.58 KB
/
dependencies.gradle
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// By keeping dependencies in this file, they get picked up by dependabot reliably
// inspired by mockito's gradle structure, which dependabot uses as a test case
// Repeating repositories here allows dependabot to use them to check for updates
buildscript {
repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://packages.confluent.io/maven/" }
maven { url "https://splunk.jfrog.io/splunk/ext-releases-local" }
}
}
ext {
libraries = [:]
plugins = []
}
// these are the plugin artifact IDs, which can be found on plugins.gradle.org
// buildSrc/build.gradle adds them to the gradle classpath
ext.plugins = [
"com.adarshr:gradle-test-logger-plugin:3.2.0",
"com.diffplug.spotless:spotless-plugin-gradle:6.9.1",
"com.github.davidmc24.gradle.plugin:gradle-avro-plugin:1.3.0",
"com.netflix.nebula:nebula-release-plugin:16.0.0",
"io.quarkus:gradle-application-plugin:2.11.2.Final",
"io.spring.gradle:dependency-management-plugin:1.0.13.RELEASE",
"org.jsonschema2pojo:jsonschema2pojo-gradle-plugin:1.1.2",
"org.kordamp.gradle:jandex-gradle-plugin:0.13.2",
"org.openapitools:openapi-generator-gradle-plugin:6.0.1",
"org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.4.0.2513",
"org.springframework.boot:spring-boot-gradle-plugin:2.7.3",
]
libraries["annotation-api"] = "javax.annotation:javax.annotation-api:1.3.2"
libraries["avro"] = "org.apache.avro:avro:1.11.1"
libraries["awssdk-bom"] = "software.amazon.awssdk:bom:2.17.259"
libraries["clowder-quarkus-config-source"] = "com.redhat.cloud.common:clowder-quarkus-config-source:1.2.0"
libraries["guava"] = "com.google.guava:guava:31.1-jre"
libraries["hawtio-springboot"] = "io.hawt:hawtio-springboot:2.15.0"
libraries["jackson-databind-nullable"] = "org.openapitools:jackson-databind-nullable:0.2.3"
libraries["janino"] = "org.codehaus.janino:janino:3.1.7"
libraries["jboss-jaxrs-api_2.1_spec"] = "org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec:2.0.2.Final"
libraries["jgit"] = "org.eclipse.jgit:org.eclipse.jgit:6.2.0.202206071550-r"
libraries["jsr305"] = "com.google.code.findbugs:jsr305:3.0.2"
libraries["junit-jupiter"] = "org.junit.jupiter:junit-jupiter:5.9.0"
libraries["kafka-avro-serializer"] = "io.confluent:kafka-avro-serializer:7.2.1"
libraries["lombok"] = "org.projectlombok:lombok:1.18.24"
libraries["quarkus-bom"] = "io.quarkus.platform:quarkus-bom:2.11.2.Final"
libraries["quarkus-logging-logback"] = "io.quarkiverse.logging.logback:quarkus-logging-logback:0.13.0"
libraries["quarkus-logging-splunk"] = "io.quarkiverse.logging.splunk:quarkus-logging-splunk:2.4.0"
libraries["resteasy-client"] = "org.jboss.resteasy:resteasy-client:5.0.4.Final"
libraries["resteasy-jackson2-provider"] = "org.jboss.resteasy:resteasy-jackson2-provider:5.0.4.Final"
libraries["resteasy-multipart-provider"] = "org.jboss.resteasy:resteasy-multipart-provider:5.0.4.Final"
libraries["resteasy-spring-boot-starter"] = "org.jboss.resteasy:resteasy-spring-boot-starter:5.0.0.Final"
libraries["resteasy-validator-provider"] = "org.jboss.resteasy:resteasy-validator-provider:5.0.4.Final"
libraries["splunk-library-javalogging"] = "com.splunk.logging:splunk-library-javalogging:1.11.5"
libraries["spring-boot-dependencies"] = "org.springframework.boot:spring-boot-dependencies:2.7.3"
libraries["swagger-annotations"] = "io.swagger:swagger-annotations:1.6.6"
libraries["swagger-ui"] = "org.webjars:swagger-ui:4.13.2"
libraries["webjars-locator"] = "org.webjars:webjars-locator:0.45"
libraries["wiremock-jre8"] = "com.github.tomakehurst:wiremock-jre8:2.33.2"