blob: 87f4e41d97d3fc5b65db3f90428cda40e6c7ad68 [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#
# as per https://github.com/cucumber/cucumber-jvm/tree/master/junit-platform-engine#configuration-options
cucumber.publish.quiet=true
cucumber.filter.tags=not @backlog and not @ignore
#we are using @Cucumber annotated classes and restrict classpath search to
cucumber.glue=org.apache.causeway.testdomain.cucumber
#we are using built-in reporting plugins
cucumber.plugin=pretty, html:target/cucumber-reports/cucumber-report.html
# WARNING:
#
# cucumber.plugin=..., json:target/cucumber-reports/cucumber-report.json, ...
#
# will cause an empty file to be created when running from mvn.
#
# this is why the maven configuration to execute cucumber using the CLI (antrun:run@cucumber-cli)
# is configured to use --plugins json:target/cucumber-no-clobber.json
#