File tree 3 files changed +6
-0
lines changed
main/resources/archetype-resources/src/test/java
test/resources/projects/should-generate-project/reference/src/test/java/com/example
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
10
10
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
11
11
12
12
## [ Unreleased]
13
+ ### Fixed
14
+ - [ Archetype] Set glue path by default ([ #2975 ] ( https://github.com/cucumber/cucumber-jvm/pull/2975 ) M.P. Korstanje)
13
15
14
16
## [ 7.21.0] - 2025-02-02
15
17
### Added
Original file line number Diff line number Diff line change 5
5
import org .junit .platform .suite .api .SelectPackages ;
6
6
import org .junit .platform .suite .api .Suite ;
7
7
8
+ import static io .cucumber .junit .platform .engine .Constants .GLUE_PROPERTY_NAME ;
8
9
import static io .cucumber .junit .platform .engine .Constants .PLUGIN_PROPERTY_NAME ;
9
10
10
11
@ Suite
11
12
@ IncludeEngines ("cucumber" )
12
13
@ SelectPackages ("${package}" )
13
14
@ ConfigurationParameter (key = PLUGIN_PROPERTY_NAME , value = "pretty" )
15
+ @ ConfigurationParameter (key = GLUE_PROPERTY_NAME , value = "${package}" )
14
16
public class RunCucumberTest {
15
17
}
Original file line number Diff line number Diff line change 5
5
import org .junit .platform .suite .api .SelectPackages ;
6
6
import org .junit .platform .suite .api .Suite ;
7
7
8
+ import static io .cucumber .junit .platform .engine .Constants .GLUE_PROPERTY_NAME ;
8
9
import static io .cucumber .junit .platform .engine .Constants .PLUGIN_PROPERTY_NAME ;
9
10
10
11
@ Suite
11
12
@ IncludeEngines ("cucumber" )
12
13
@ SelectPackages ("com.example" )
13
14
@ ConfigurationParameter (key = PLUGIN_PROPERTY_NAME , value = "pretty" )
15
+ @ ConfigurationParameter (key = GLUE_PROPERTY_NAME , value = "com.example" )
14
16
public class RunCucumberTest {
15
17
}
You can’t perform that action at this time.
0 commit comments