diff --git a/generators/spring-boot/generator.js b/generators/spring-boot/generator.js index da76a2191..e5f057552 100644 --- a/generators/spring-boot/generator.js +++ b/generators/spring-boot/generator.js @@ -177,6 +177,7 @@ export default class extends BaseApplicationGenerator { destinationFile = adjustTestContainersSpringContextCustomizerFactoryFile(destinationFile); } + sourceFile = sourceFile.replace('/java/package/', '/java/_package_/'); sourceFile = file.namespace === 'jhipster-kotlin:spring-boot' || isCommonFile(sourceFile) ? convertToKotlinFile(sourceFile) @@ -508,6 +509,7 @@ export default class extends BaseApplicationGenerator { for (const entity of entities.filter(entity => !entity.skipServer)) { for (const field of entity.fields.filter(field => field.fieldIsEnum)) { const enumInfo = { + ...application, ...getEnumInfo(field, entity.clientRootFolder), frontendAppName: entity.frontendAppName, packageName: application.packageName, @@ -520,7 +522,7 @@ export default class extends BaseApplicationGenerator { { templates: [ { - file: `${SERVER_MAIN_SRC_KOTLIN_DIR}package/domain/enumeration/Enum.kt`, + file: `${SERVER_MAIN_SRC_KOTLIN_DIR}_package_/domain/enumeration/Enum.kt`, renameTo: () => `${SERVER_MAIN_SRC_KOTLIN_DIR}${entity.entityAbsoluteFolder}/domain/enumeration/${field.fieldType}.kt`, }, diff --git a/generators/spring-boot/templates/src/main/kotlin/package/Application.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/Application.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/Application.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/Application.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/ApplicationWebXml.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/ApplicationWebXml.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/ApplicationWebXml.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/ApplicationWebXml.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/GeneratedByJHipster.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/GeneratedByJHipster.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/GeneratedByJHipster.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/GeneratedByJHipster.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/aop/logging/LoggingAspect.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/aop/logging/LoggingAspect.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/aop/logging/LoggingAspect.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/aop/logging/LoggingAspect.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/client/AuthorizedFeignClient.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/client/AuthorizedFeignClient.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/client/AuthorizedFeignClient.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/client/AuthorizedFeignClient.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/client/AuthorizedUserFeignClient.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/client/AuthorizedUserFeignClient.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/client/AuthorizedUserFeignClient.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/client/AuthorizedUserFeignClient.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/client/JWT_UserFeignClientInterceptor.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/client/JWT_UserFeignClientInterceptor.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/client/JWT_UserFeignClientInterceptor.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/client/JWT_UserFeignClientInterceptor.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/client/OAuth2InterceptedFeignConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/client/OAuth2InterceptedFeignConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/client/OAuth2InterceptedFeignConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/client/OAuth2InterceptedFeignConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/client/OAuth2UserClientFeignConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/client/OAuth2UserClientFeignConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/client/OAuth2UserClientFeignConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/client/OAuth2UserClientFeignConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/client/OAuth2_UserFeignClientInterceptor.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/client/OAuth2_UserFeignClientInterceptor.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/client/OAuth2_UserFeignClientInterceptor.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/client/OAuth2_UserFeignClientInterceptor.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/client/TokenRelayRequestInterceptor.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/client/TokenRelayRequestInterceptor.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/client/TokenRelayRequestInterceptor.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/client/TokenRelayRequestInterceptor.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/common/delete_template.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/common/delete_template.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/common/delete_template.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/common/delete_template.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/common/field_validators.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/common/field_validators.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/common/field_validators.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/common/field_validators.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/common/get_all_stream_template.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/common/get_all_stream_template.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/common/get_all_stream_template.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/common/get_all_stream_template.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/common/get_all_template.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/common/get_all_template.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/common/get_all_template.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/common/get_all_template.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/common/get_filtered_template.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/common/get_filtered_template.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/common/get_filtered_template.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/common/get_filtered_template.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/common/get_template.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/common/get_template.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/common/get_template.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/common/get_template.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/common/inject_template.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/common/inject_template.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/common/inject_template.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/common/inject_template.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/common/patch_template.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/common/patch_template.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/common/patch_template.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/common/patch_template.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/common/search_stream_template.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/common/search_stream_template.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/common/search_stream_template.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/common/search_stream_template.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/common/search_template.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/common/search_template.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/common/search_template.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/common/search_template.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/ApplicationProperties.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/ApplicationProperties.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/ApplicationProperties.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/ApplicationProperties.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/AsyncConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/AsyncConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/AsyncConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/AsyncConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/CRLFLogConverter.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/CRLFLogConverter.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/CRLFLogConverter.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/CRLFLogConverter.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/Constants.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/Constants.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/Constants.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/Constants.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/DateTimeFormatConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/DateTimeFormatConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/DateTimeFormatConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/DateTimeFormatConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/DefaultProfileUtil.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/DefaultProfileUtil.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/DefaultProfileUtil.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/DefaultProfileUtil.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/EurekaWorkaroundConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/EurekaWorkaroundConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/EurekaWorkaroundConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/EurekaWorkaroundConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/FeignConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/FeignConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/FeignConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/FeignConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/JacksonConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/JacksonConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/JacksonConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/JacksonConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/KafkaSseConsumer.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/KafkaSseConsumer.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/KafkaSseConsumer.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/KafkaSseConsumer.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/KafkaSseProducer.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/KafkaSseProducer.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/KafkaSseProducer.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/KafkaSseProducer.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/LocaleConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/LocaleConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/LocaleConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/LocaleConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/LocaleConfiguration_reactive.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/LocaleConfiguration_reactive.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/LocaleConfiguration_reactive.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/LocaleConfiguration_reactive.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/LoggingAspectConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/LoggingAspectConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/LoggingAspectConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/LoggingAspectConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/LoggingConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/LoggingConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/LoggingConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/LoggingConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/OAuth2Configuration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/OAuth2Configuration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/OAuth2Configuration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/OAuth2Configuration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/OpenApiConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/OpenApiConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/OpenApiConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/OpenApiConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/ReactorConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/ReactorConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/ReactorConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/ReactorConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/RestTemplateConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/RestTemplateConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/RestTemplateConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/RestTemplateConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/SecurityConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/SecurityConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/SecurityConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/SecurityConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/SecurityConfiguration_reactive.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/SecurityConfiguration_reactive.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/SecurityConfiguration_reactive.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/SecurityConfiguration_reactive.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/StaticResourcesWebConfiguration.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/StaticResourcesWebConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/StaticResourcesWebConfiguration.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/StaticResourcesWebConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/config/WebConfigurer.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/config/WebConfigurer.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/config/WebConfigurer.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/config/WebConfigurer.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/domain/AbstractAuditingEntity.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/domain/AbstractAuditingEntity.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/domain/AbstractAuditingEntity.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/domain/AbstractAuditingEntity.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/domain/Authority.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/domain/Authority.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/domain/Authority.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/domain/Authority.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/domain/PersistentToken.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/domain/PersistentToken.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/domain/PersistentToken.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/domain/PersistentToken.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/domain/User.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/domain/User.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/domain/User.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/domain/User.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/domain/enumeration/Enum.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/domain/enumeration/Enum.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/domain/enumeration/Enum.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/domain/enumeration/Enum.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/management/SecurityMetersService.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/management/SecurityMetersService.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/management/SecurityMetersService.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/management/SecurityMetersService.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/repository/AuthorityRepository.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/repository/AuthorityRepository.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/repository/AuthorityRepository.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/repository/AuthorityRepository.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/repository/PersistentTokenRepository.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/repository/PersistentTokenRepository.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/repository/PersistentTokenRepository.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/repository/PersistentTokenRepository.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/repository/UserRepository.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/repository/UserRepository.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/repository/UserRepository.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/repository/UserRepository.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/AuthoritiesConstants.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/AuthoritiesConstants.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/AuthoritiesConstants.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/AuthoritiesConstants.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/DomainUserDetailsService.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/DomainUserDetailsService.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/DomainUserDetailsService.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/DomainUserDetailsService.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/IatTokenEnhancer.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/IatTokenEnhancer.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/IatTokenEnhancer.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/IatTokenEnhancer.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/PersistentTokenRememberMeServices.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/PersistentTokenRememberMeServices.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/PersistentTokenRememberMeServices.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/PersistentTokenRememberMeServices.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/SecurityUtils.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/SecurityUtils.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/SecurityUtils.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/SecurityUtils.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/SpringSecurityAuditorAware.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/SpringSecurityAuditorAware.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/SpringSecurityAuditorAware.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/SpringSecurityAuditorAware.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/UserNotActivatedException.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/UserNotActivatedException.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/UserNotActivatedException.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/UserNotActivatedException.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/jwt/JWTConfigurer.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/jwt/JWTConfigurer.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/jwt/JWTConfigurer.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/jwt/JWTConfigurer.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/jwt/JWTFilter.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/jwt/JWTFilter.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/jwt/JWTFilter.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/jwt/JWTFilter.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/jwt/JWTRelayGatewayFilterFactory.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/jwt/JWTRelayGatewayFilterFactory.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/jwt/JWTRelayGatewayFilterFactory.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/jwt/JWTRelayGatewayFilterFactory.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/jwt/TokenProvider.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/jwt/TokenProvider.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/jwt/TokenProvider.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/jwt/TokenProvider.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/AudienceValidator.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/AudienceValidator.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/AudienceValidator.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/AudienceValidator.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/AuthorizationHeaderUtil.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/AuthorizationHeaderUtil.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/AuthorizationHeaderUtil.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/AuthorizationHeaderUtil.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/CachedUserInfoTokenServices.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/CachedUserInfoTokenServices.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/CachedUserInfoTokenServices.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/CachedUserInfoTokenServices.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/CustomClaimConverter.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/CustomClaimConverter.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/CustomClaimConverter.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/CustomClaimConverter.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/JwtGrantedAuthorityConverter.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/JwtGrantedAuthorityConverter.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/JwtGrantedAuthorityConverter.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/JwtGrantedAuthorityConverter.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/OAuthIdpTokenResponseDTO.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/OAuthIdpTokenResponseDTO.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/OAuthIdpTokenResponseDTO.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/OAuthIdpTokenResponseDTO.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/SimpleAuthoritiesExtractor.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/SimpleAuthoritiesExtractor.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/SimpleAuthoritiesExtractor.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/SimpleAuthoritiesExtractor.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/SimplePrincipalExtractor.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/SimplePrincipalExtractor.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/security/oauth2/SimplePrincipalExtractor.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/security/oauth2/SimplePrincipalExtractor.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/EmailAlreadyUsedException.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/EmailAlreadyUsedException.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/EmailAlreadyUsedException.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/EmailAlreadyUsedException.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/EntityQueryService.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/EntityQueryService.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/EntityQueryService.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/EntityQueryService.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/EntityService.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/EntityService.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/EntityService.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/EntityService.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/InvalidPasswordException.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/InvalidPasswordException.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/InvalidPasswordException.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/InvalidPasswordException.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/KafkaConsumer.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/KafkaConsumer.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/KafkaConsumer.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/KafkaConsumer.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/KafkaProducer.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/KafkaProducer.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/KafkaProducer.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/KafkaProducer.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/MailService.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/MailService.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/MailService.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/MailService.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/UserService.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/UserService.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/UserService.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/UserService.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/UsernameAlreadyUsedException.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/UsernameAlreadyUsedException.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/UsernameAlreadyUsedException.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/UsernameAlreadyUsedException.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/criteria/EntityCriteria.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/criteria/EntityCriteria.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/criteria/EntityCriteria.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/criteria/EntityCriteria.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/dto/AdminUserDTO.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/dto/AdminUserDTO.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/dto/AdminUserDTO.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/dto/AdminUserDTO.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/dto/EntityDTO.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/dto/EntityDTO.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/dto/EntityDTO.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/dto/EntityDTO.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/dto/PasswordChangeDTO.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/dto/PasswordChangeDTO.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/dto/PasswordChangeDTO.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/dto/PasswordChangeDTO.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/dto/UserDTO.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/dto/UserDTO.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/dto/UserDTO.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/dto/UserDTO.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/impl/EntityServiceImpl.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/impl/EntityServiceImpl.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/impl/EntityServiceImpl.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/impl/EntityServiceImpl.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/mapper/BaseEntityMapper.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/mapper/BaseEntityMapper.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/mapper/BaseEntityMapper.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/mapper/BaseEntityMapper.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/mapper/EntityMapper.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/mapper/EntityMapper.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/mapper/EntityMapper.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/mapper/EntityMapper.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/mapper/UserMapper.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/mapper/UserMapper.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/mapper/UserMapper.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/mapper/UserMapper.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/service/util/RandomUtil.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/service/util/RandomUtil.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/service/util/RandomUtil.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/service/util/RandomUtil.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/filter/ModifyServersOpenApiFilter.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/filter/ModifyServersOpenApiFilter.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/filter/ModifyServersOpenApiFilter.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/filter/ModifyServersOpenApiFilter.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/filter/OAuth2ReactiveRefreshTokensWebFilter.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/filter/OAuth2ReactiveRefreshTokensWebFilter.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/filter/OAuth2ReactiveRefreshTokensWebFilter.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/filter/OAuth2ReactiveRefreshTokensWebFilter.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/filter/OAuth2RefreshTokensWebFilter.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/filter/OAuth2RefreshTokensWebFilter.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/filter/OAuth2RefreshTokensWebFilter.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/filter/OAuth2RefreshTokensWebFilter.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/filter/SpaWebFilter.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/filter/SpaWebFilter.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/filter/SpaWebFilter.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/filter/SpaWebFilter.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/AccountResource.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/AccountResource.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/AccountResource.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/AccountResource.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/AuthInfoResource.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/AuthInfoResource.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/AuthInfoResource.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/AuthInfoResource.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/ClientForwardController.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/ClientForwardController.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/ClientForwardController.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/ClientForwardController.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/EntityResource.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/EntityResource.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/EntityResource.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/EntityResource.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/GatewayResource.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/GatewayResource.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/GatewayResource.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/GatewayResource.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/KafkaResource.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/KafkaResource.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/KafkaResource.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/KafkaResource.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/KafkaResource_reactive.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/KafkaResource_reactive.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/KafkaResource_reactive.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/KafkaResource_reactive.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/LogoutResource.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/LogoutResource.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/LogoutResource.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/LogoutResource.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/LogoutResource_reactive.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/LogoutResource_reactive.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/LogoutResource_reactive.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/LogoutResource_reactive.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/PublicUserResource.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/PublicUserResource.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/PublicUserResource.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/PublicUserResource.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/UserJWTController.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/UserJWTController.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/UserJWTController.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/UserJWTController.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/UserResource.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/UserResource.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/UserResource.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/UserResource.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/BadRequestAlertException.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/BadRequestAlertException.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/BadRequestAlertException.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/BadRequestAlertException.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/EmailAlreadyUsedException.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/EmailAlreadyUsedException.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/EmailAlreadyUsedException.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/EmailAlreadyUsedException.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/ErrorConstants.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/ErrorConstants.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/ErrorConstants.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/ErrorConstants.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/ExceptionTranslator.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/ExceptionTranslator.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/ExceptionTranslator.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/ExceptionTranslator.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/FieldErrorVM.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/FieldErrorVM.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/FieldErrorVM.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/FieldErrorVM.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/InvalidPasswordException.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/InvalidPasswordException.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/InvalidPasswordException.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/InvalidPasswordException.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/LoginAlreadyUsedException.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/LoginAlreadyUsedException.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/errors/LoginAlreadyUsedException.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/errors/LoginAlreadyUsedException.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/vm/KeyAndPasswordVM.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/vm/KeyAndPasswordVM.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/vm/KeyAndPasswordVM.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/vm/KeyAndPasswordVM.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/vm/LoginVM.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/vm/LoginVM.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/vm/LoginVM.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/vm/LoginVM.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/vm/ManagedUserVM.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/vm/ManagedUserVM.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/vm/ManagedUserVM.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/vm/ManagedUserVM.kt.ejs diff --git a/generators/spring-boot/templates/src/main/kotlin/package/web/rest/vm/RouteVM.kt.ejs b/generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/vm/RouteVM.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/main/kotlin/package/web/rest/vm/RouteVM.kt.ejs rename to generators/spring-boot/templates/src/main/kotlin/_package_/web/rest/vm/RouteVM.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/IntegrationTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/IntegrationTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/IntegrationTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/IntegrationTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/TechnicalStructureTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/TechnicalStructureTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/TechnicalStructureTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/TechnicalStructureTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/config/AsyncSyncConfiguration.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/config/AsyncSyncConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/config/AsyncSyncConfiguration.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/config/AsyncSyncConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/config/EmbeddedKafka.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/config/EmbeddedKafka.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/config/EmbeddedKafka.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/config/EmbeddedKafka.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/config/JHipsterBlockHoundIntegration.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/config/JHipsterBlockHoundIntegration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/config/JHipsterBlockHoundIntegration.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/config/JHipsterBlockHoundIntegration.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/config/KafkaTestContainer.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/config/KafkaTestContainer.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/config/KafkaTestContainer.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/config/KafkaTestContainer.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/config/SpringBootTestClassOrderer.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/config/SpringBootTestClassOrderer.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/config/SpringBootTestClassOrderer.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/config/SpringBootTestClassOrderer.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/config/StaticResourcesWebConfigurerTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/config/StaticResourcesWebConfigurerTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/config/StaticResourcesWebConfigurerTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/config/StaticResourcesWebConfigurerTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/config/TestSecurityConfiguration.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/config/TestSecurityConfiguration.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/config/TestSecurityConfiguration.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/config/TestSecurityConfiguration.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/config/WebConfigurerTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/config/WebConfigurerTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/config/WebConfigurerTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/config/WebConfigurerTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/config/WebConfigurerTestController.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/config/WebConfigurerTestController.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/config/WebConfigurerTestController.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/config/WebConfigurerTestController.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/management/SecurityMetersServiceTests.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/management/SecurityMetersServiceTests.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/management/SecurityMetersServiceTests.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/management/SecurityMetersServiceTests.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/security/DomainUserDetailsServiceIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/security/DomainUserDetailsServiceIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/security/DomainUserDetailsServiceIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/security/DomainUserDetailsServiceIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/security/SecurityUtilsUnitTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/security/SecurityUtilsUnitTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/security/SecurityUtilsUnitTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/security/SecurityUtilsUnitTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/security/SecurityUtilsUnitTest_reactive.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/security/SecurityUtilsUnitTest_reactive.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/security/SecurityUtilsUnitTest_reactive.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/security/SecurityUtilsUnitTest_reactive.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/security/jwt/JWTFilterTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/security/jwt/JWTFilterTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/security/jwt/JWTFilterTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/security/jwt/JWTFilterTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/security/jwt/TokenProviderSecurityMetersTests.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/security/jwt/TokenProviderSecurityMetersTests.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/security/jwt/TokenProviderSecurityMetersTests.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/security/jwt/TokenProviderSecurityMetersTests.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/security/jwt/TokenProviderTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/security/jwt/TokenProviderTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/security/jwt/TokenProviderTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/security/jwt/TokenProviderTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/security/oauth2/AudienceValidatorTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/security/oauth2/AudienceValidatorTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/security/oauth2/AudienceValidatorTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/security/oauth2/AudienceValidatorTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/security/oauth2/AuthorizationHeaderUtilTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/security/oauth2/AuthorizationHeaderUtilTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/security/oauth2/AuthorizationHeaderUtilTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/security/oauth2/AuthorizationHeaderUtilTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/security/oauth2/CookieTokenExtractorTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/security/oauth2/CookieTokenExtractorTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/security/oauth2/CookieTokenExtractorTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/security/oauth2/CookieTokenExtractorTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/security/oauth2/CustomClaimConverterIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/security/oauth2/CustomClaimConverterIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/security/oauth2/CustomClaimConverterIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/security/oauth2/CustomClaimConverterIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/service/MailServiceIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/service/MailServiceIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/service/MailServiceIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/service/MailServiceIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/service/UserServiceIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/service/UserServiceIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/service/UserServiceIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/service/UserServiceIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/service/dto/EntityDTOTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/service/dto/EntityDTOTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/service/dto/EntityDTOTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/service/dto/EntityDTOTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/service/mapper/EntityMapperTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/service/mapper/EntityMapperTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/service/mapper/EntityMapperTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/service/mapper/EntityMapperTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/service/mapper/UserMapperTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/service/mapper/UserMapperTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/service/mapper/UserMapperTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/service/mapper/UserMapperTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/test/util/OAuth2TestUtil.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/test/util/OAuth2TestUtil.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/test/util/OAuth2TestUtil.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/test/util/OAuth2TestUtil.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/filter/ModifyServersOpenApiFilterTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/filter/ModifyServersOpenApiFilterTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/filter/ModifyServersOpenApiFilterTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/filter/ModifyServersOpenApiFilterTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/AccountResourceIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/AccountResourceIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/AccountResourceIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/AccountResourceIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/AccountResourceIT_oauth2.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/AccountResourceIT_oauth2.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/AccountResourceIT_oauth2.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/AccountResourceIT_oauth2.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/AccountResourceIT_skipUserManagement.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/AccountResourceIT_skipUserManagement.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/AccountResourceIT_skipUserManagement.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/AccountResourceIT_skipUserManagement.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/ClientForwardControllerTest.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/ClientForwardControllerTest.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/ClientForwardControllerTest.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/ClientForwardControllerTest.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/EntityResourceIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/EntityResourceIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/EntityResourceIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/EntityResourceIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/KafkaResourceIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/KafkaResourceIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/KafkaResourceIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/KafkaResourceIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/KafkaResourceIT_reactive.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/KafkaResourceIT_reactive.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/KafkaResourceIT_reactive.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/KafkaResourceIT_reactive.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/LogoutResourceIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/LogoutResourceIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/LogoutResourceIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/LogoutResourceIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/PublicUserResourceIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/PublicUserResourceIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/PublicUserResourceIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/PublicUserResourceIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/TestUtil.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/TestUtil.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/TestUtil.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/TestUtil.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/UserJWTControllerIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/UserJWTControllerIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/UserJWTControllerIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/UserJWTControllerIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/UserResourceIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/UserResourceIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/UserResourceIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/UserResourceIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/WithUnauthenticatedMockUser.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/WithUnauthenticatedMockUser.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/WithUnauthenticatedMockUser.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/WithUnauthenticatedMockUser.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/errors/ExceptionTranslatorIT.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/errors/ExceptionTranslatorIT.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/errors/ExceptionTranslatorIT.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/errors/ExceptionTranslatorIT.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/errors/ExceptionTranslatorIT_reactive.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/errors/ExceptionTranslatorIT_reactive.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/errors/ExceptionTranslatorIT_reactive.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/errors/ExceptionTranslatorIT_reactive.kt.ejs diff --git a/generators/spring-boot/templates/src/test/kotlin/package/web/rest/errors/ExceptionTranslatorTestController.kt.ejs b/generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/errors/ExceptionTranslatorTestController.kt.ejs similarity index 100% rename from generators/spring-boot/templates/src/test/kotlin/package/web/rest/errors/ExceptionTranslatorTestController.kt.ejs rename to generators/spring-boot/templates/src/test/kotlin/_package_/web/rest/errors/ExceptionTranslatorTestController.kt.ejs