@@ -100,12 +100,12 @@ void testDefault(TestInfo info) throws Throwable {
100
100
}
101
101
102
102
@ Test
103
- @ DisplayName ("When using 3.2 project, then, it should create all the files correctly with the requested content" )
104
- void test3__2 (TestInfo info ) throws Throwable {
103
+ @ DisplayName ("When using 3.15 project, then, it should create all the files correctly with the requested content" )
104
+ void test3__15 (TestInfo info ) throws Throwable {
105
105
// When
106
106
QuarkusProjectService creator = getProjectService ();
107
- PlatformInfo platformInfo = platformService .platformInfo ("3.2 " );
108
- Path projDir = creator .createTmp (platformInfo , ProjectDefinition .builder ().streamKey ("3.2 " ).build ());
107
+ PlatformInfo platformInfo = platformService .platformInfo ("3.15 " );
108
+ Path projDir = creator .createTmp (platformInfo , ProjectDefinition .builder ().streamKey ("3.15 " ).build ());
109
109
110
110
// Then
111
111
assertThatDirectoryTreeMatchSnapshots (info , projDir );
@@ -121,9 +121,9 @@ void test3__2(TestInfo info) throws Throwable {
121
121
.satisfies (checkContains ("<quarkus.platform.version>%s</quarkus.platform.version>"
122
122
.formatted (platformInfo .extensionCatalog ().getBom ().getVersion ())))
123
123
.satisfies (checkContains ("<groupId>io.quarkus</groupId>" ))
124
- .satisfies (checkContains ("<artifactId>quarkus-resteasy-reactive </artifactId>" ))
124
+ .satisfies (checkContains ("<artifactId>quarkus-rest </artifactId>" ))
125
125
.satisfies (checkContains ("<maven.compiler.release>%s</maven.compiler.release>"
126
- .formatted (platformService .platformInfo ("3.2 " ).stream ().javaCompatibility ().recommended ())))
126
+ .formatted (platformService .platformInfo ("3.15 " ).stream ().javaCompatibility ().recommended ())))
127
127
.satisfies (checkContains ("<artifactId>rest-assured</artifactId>" ));
128
128
129
129
assertThatMatchSnapshot (info , projDir , "src/main/java/org/acme/GreetingResource.java" )
0 commit comments