/
java56
/
Hotels
Обзор
Документация
Войти
/
java56
/
Hotels
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
build.gradle
63 строки
2 KB
Mikhail Gorbatenkov
58 - suppress the warning in gradle
04 фев 2025, 17:02
04 фев 2025, 17:02
74de54d
Код
Авторство
О чём код?
plugins { id 'java' id 'io.quarkus' } repositories { mavenCentral() mavenLocal() } ext { mapstructVersion = '1.6.3' mockitoVersion = '5.15.2' } tasks.withType(Test).configureEach { jvmArgs '-XX:+EnableDynamicAgentLoading' } dependencies { implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-arc' implementation 'io.quarkus:quarkus-rest' implementation 'io.quarkus:quarkus-hibernate-orm-panache' implementation 'io.quarkus:quarkus-jdbc-mariadb' implementation 'io.quarkus:quarkus-liquibase' compileOnly 'org.projectlombok:lombok:1.18.36' annotationProcessor 'org.projectlombok:lombok:1.18.36' implementation 'io.quarkus:quarkus-smallrye-openapi' implementation 'io.quarkus:quarkus-hibernate-validator' implementation "org.mapstruct:mapstruct:${mapstructVersion}" annotationProcessor "org.mapstruct:mapstruct-processor:${mapstructVersion}" testAnnotationProcessor "org.mapstruct:mapstruct-processor:${mapstructVersion}" implementation 'io.quarkus:quarkus-resteasy-reactive-jackson' testImplementation 'io.quarkus:quarkus-junit5' testImplementation 'io.rest-assured:rest-assured' implementation 'io.quarkus:quarkus-oidc' implementation 'io.quarkus:quarkus-security' testImplementation "org.mockito:mockito-core:${mockitoVersion}" testImplementation "org.mockito:mockito-junit-jupiter:${mockitoVersion}" } group 'org.mikhail' version '1.0.0-SNAPSHOT' java { sourceCompatibility = JavaVersion.VERSION_21 targetCompatibility = JavaVersion.VERSION_21 } test { systemProperty "java.util.logging.manager", "org.jboss.logmanager.LogManager" } compileJava { options.encoding = 'UTF-8' options.compilerArgs << '-parameters' } compileTestJava { options.encoding = 'UTF-8' }