๐Ÿ“ฆ sorend / route-patch-controller

๐Ÿ“„ build.gradle ยท 26 lines
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
26plugins {
    id 'java'
    id 'io.quarkus'
}

repositories {
    mavenCentral()
    mavenLocal()
}

dependencies {
    implementation enforcedPlatform('io.quarkiverse.operatorsdk:quarkus-operator-sdk-bom:5.1.1')
    implementation 'io.quarkiverse.operatorsdk:quarkus-operator-sdk'
    implementation 'io.quarkus:quarkus-container-image-docker'
    implementation 'io.quarkus:quarkus-micrometer-registry-prometheus'
    testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
    testImplementation 'io.quarkus:quarkus-test-openshift-client'
}

group 'com.github.sorend'

java {
    sourceCompatibility = JavaVersion.VERSION_17
    targetCompatibility = JavaVersion.VERSION_17
}