mirror of
https://github.com/google/nomulus.git
synced 2025-07-06 03:03:34 +02:00
Add a task to run the nomulus tool (#262)
This commit is contained in:
parent
48d8b1274f
commit
b87ef869a0
1 changed files with 7 additions and 0 deletions
|
@ -592,6 +592,13 @@ task findGoldenImages(type: JavaExec) {
|
||||||
args arguments
|
args arguments
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// To run the nomulus tool:
|
||||||
|
// gradle registryTool --args="foo --bar"
|
||||||
|
task registryTool(type: JavaExec) {
|
||||||
|
classpath = sourceSets.main.runtimeClasspath
|
||||||
|
main = 'google.registry.tools.RegistryTool'
|
||||||
|
}
|
||||||
|
|
||||||
task generateGoldenImages(type: Test) {
|
task generateGoldenImages(type: Test) {
|
||||||
// Common exclude pattern. See README in parent directory for explanation.
|
// Common exclude pattern. See README in parent directory for explanation.
|
||||||
exclude "**/*TestCase.*", "**/*TestSuite.*"
|
exclude "**/*TestCase.*", "**/*TestSuite.*"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue