Gradle: различия между версиями
Перейти к навигации
Перейти к поиску
FireWolf (обсуждение | вклад) |
FireWolf (обсуждение | вклад) |
||
Строка 39: | Строка 39: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
gradle dist -x test | gradle dist -x test | ||
</syntaxhighlight> | |||
== Исключение зависимости classpath используемого плагина == | |||
https://github.com/uli-heller/uli-java-prototypes/pull/1/commits/30025f56ea40cd0fa699de3111cb309c553cec74 | |||
<syntaxhighlight lang="groovy"> | |||
apply from: 'https://raw.github.com/akhikhl/gretty/master/pluginScripts/gretty.plugin' | |||
configurations { | |||
grettyRunnerTomcat7 { | |||
exclude group: 'org.slf4j', module: 'log4j-over-slf4j' | |||
} | |||
} | |||
gretty { | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Версия 14:50, 23 января 2019
Документация
https://docs.gradle.org/current/userguide/userguide.html
Включение анализа покрытия (jacoco)
...
apply plugin: 'java'
apply plugin: 'jacoco'
...
jacocoTestReport {
reports {
xml.enabled false
csv.enabled false
html.destination "${buildDir}/jacocoHtml"
}
}
...
После выполнения тестов сгенерировать покрытие:
gradle jacocoTestReport
Запуск одного теста
https://docs.gradle.org/current/userguide/java_plugin.html
gradle -Dtest.single=<TestClassName> test
Исключить задачу
gradle dist -x test
Исключение зависимости classpath используемого плагина
apply from: 'https://raw.github.com/akhikhl/gretty/master/pluginScripts/gretty.plugin'
configurations {
grettyRunnerTomcat7 {
exclude group: 'org.slf4j', module: 'log4j-over-slf4j'
}
}
gretty {
Обход блокировок IP/HTTP
Для обхода блокировок применяем следующие ключи:
-Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=3129
В Jenkins заполняем поле "Switches" в расширенных настройках.