diff --git a/README.md b/README.md index 36bbebd..ffda8a1 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ The stack is based on JHipster microservice architecture. Below are the componen [![Architecture][arch-image]] -## Online-store app: +## Store app: -This is the Gateway to the mircoservices. Refer [this](https://github.com/xebialabs/e-commerce-microservice/online-store/README.md) +This is the Gateway to the mircoservices. Refer [this](https://github.com/xebialabs/e-commerce-microservice/store/README.md) ## Invoice app: diff --git a/online-store/gradle.properties b/online-store/gradle.properties deleted file mode 100644 index 86a51dc..0000000 --- a/online-store/gradle.properties +++ /dev/null @@ -1,51 +0,0 @@ -rootProject.name=store -profile=dev - -# Build properties -node_version=8.11.4 -npm_version=6.4.1 -yarn_version=1.9.4 - -# Dependency versions -jhipster_dependencies_version=2.0.20 -# The spring-boot version should match the one managed by -# https://mvnrepository.com/artifact/io.github.jhipster/jhipster-dependencies/${jhipster_dependencies_version} -spring_boot_version=2.0.4.RELEASE -# The hibernate version should match the one managed by -# https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies/${spring-boot.version} --> -hibernate_version=5.2.17.Final -mapstruct_version=1.2.0.Final - -liquibase_hibernate5_version=3.6 -liquibaseTaskPrefix=liquibase - -## below are some of the gradle performance improvement settings that can be used as required, these are not enabled by default - -## The Gradle daemon aims to improve the startup and execution time of Gradle. -## The daemon is enabled by default in Gradle 3+ setting this to false will disable this. -## TODO: disable daemon on CI, since builds should be clean and reliable on servers -## https://docs.gradle.org/current/userguide/gradle_daemon.html#sec:ways_to_disable_gradle_daemon -## un comment the below line to disable the daemon - -#org.gradle.daemon=false - -## Specifies the JVM arguments used for the daemon process. -## The setting is particularly useful for tweaking memory settings. -## Default value: -Xmx1024m -XX:MaxPermSize=256m -## un comment the below line to override the daemon defaults - -#org.gradle.jvmargs=-Xmx1024m -XX:MaxPermSize=256m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 - -## When configured, Gradle will run in incubating parallel mode. -## This option should only be used with decoupled projects. More details, visit -## http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -## un comment the below line to enable parallel mode - -#org.gradle.parallel=true - -## Enables new incubating mode that makes Gradle selective when configuring projects. -## Only relevant projects are configured which results in faster builds for large multi-projects. -## http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:configuration_on_demand -## un comment the below line to enable the selective mode - -#org.gradle.configureondemand=true diff --git a/online-store/.editorconfig b/store/.editorconfig similarity index 100% rename from online-store/.editorconfig rename to store/.editorconfig diff --git a/online-store/.gitattributes b/store/.gitattributes similarity index 100% rename from online-store/.gitattributes rename to store/.gitattributes diff --git a/online-store/.gitignore b/store/.gitignore similarity index 100% rename from online-store/.gitignore rename to store/.gitignore diff --git a/online-store/.jhipster/Customer.json b/store/.jhipster/Customer.json similarity index 100% rename from online-store/.jhipster/Customer.json rename to store/.jhipster/Customer.json diff --git a/online-store/.jhipster/Invoice.json b/store/.jhipster/Invoice.json similarity index 100% rename from online-store/.jhipster/Invoice.json rename to store/.jhipster/Invoice.json diff --git a/online-store/.jhipster/Notification.json b/store/.jhipster/Notification.json similarity index 100% rename from online-store/.jhipster/Notification.json rename to store/.jhipster/Notification.json diff --git a/online-store/.jhipster/OrderItem.json b/store/.jhipster/OrderItem.json similarity index 100% rename from online-store/.jhipster/OrderItem.json rename to store/.jhipster/OrderItem.json diff --git a/online-store/.jhipster/Product.json b/store/.jhipster/Product.json similarity index 100% rename from online-store/.jhipster/Product.json rename to store/.jhipster/Product.json diff --git a/online-store/.jhipster/ProductCategory.json b/store/.jhipster/ProductCategory.json similarity index 100% rename from online-store/.jhipster/ProductCategory.json rename to store/.jhipster/ProductCategory.json diff --git a/online-store/.jhipster/ProductOrder.json b/store/.jhipster/ProductOrder.json similarity index 100% rename from online-store/.jhipster/ProductOrder.json rename to store/.jhipster/ProductOrder.json diff --git a/online-store/.jhipster/Shipment.json b/store/.jhipster/Shipment.json similarity index 100% rename from online-store/.jhipster/Shipment.json rename to store/.jhipster/Shipment.json diff --git a/online-store/.prettierignore b/store/.prettierignore similarity index 100% rename from online-store/.prettierignore rename to store/.prettierignore diff --git a/online-store/.prettierrc b/store/.prettierrc similarity index 100% rename from online-store/.prettierrc rename to store/.prettierrc diff --git a/online-store/.yo-rc.json b/store/.yo-rc.json similarity index 100% rename from online-store/.yo-rc.json rename to store/.yo-rc.json diff --git a/online-store/README.md b/store/README.md similarity index 100% rename from online-store/README.md rename to store/README.md diff --git a/online-store/build.gradle b/store/build.gradle similarity index 100% rename from online-store/build.gradle rename to store/build.gradle diff --git a/online-store/gradle/docker.gradle b/store/gradle/docker.gradle similarity index 100% rename from online-store/gradle/docker.gradle rename to store/gradle/docker.gradle diff --git a/online-store/gradle/liquibase.gradle b/store/gradle/liquibase.gradle similarity index 100% rename from online-store/gradle/liquibase.gradle rename to store/gradle/liquibase.gradle diff --git a/online-store/gradle/profile_dev.gradle b/store/gradle/profile_dev.gradle similarity index 100% rename from online-store/gradle/profile_dev.gradle rename to store/gradle/profile_dev.gradle diff --git a/online-store/gradle/profile_prod.gradle b/store/gradle/profile_prod.gradle similarity index 100% rename from online-store/gradle/profile_prod.gradle rename to store/gradle/profile_prod.gradle diff --git a/online-store/gradle/sonar.gradle b/store/gradle/sonar.gradle similarity index 100% rename from online-store/gradle/sonar.gradle rename to store/gradle/sonar.gradle diff --git a/online-store/gradle/wrapper/gradle-wrapper.jar b/store/gradle/wrapper/gradle-wrapper.jar similarity index 100% rename from online-store/gradle/wrapper/gradle-wrapper.jar rename to store/gradle/wrapper/gradle-wrapper.jar diff --git a/online-store/gradle/wrapper/gradle-wrapper.properties b/store/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from online-store/gradle/wrapper/gradle-wrapper.properties rename to store/gradle/wrapper/gradle-wrapper.properties diff --git a/online-store/gradle/zipkin.gradle b/store/gradle/zipkin.gradle similarity index 100% rename from online-store/gradle/zipkin.gradle rename to store/gradle/zipkin.gradle diff --git a/online-store/gradlew b/store/gradlew similarity index 100% rename from online-store/gradlew rename to store/gradlew diff --git a/online-store/gradlew.bat b/store/gradlew.bat similarity index 100% rename from online-store/gradlew.bat rename to store/gradlew.bat diff --git a/online-store/package-lock.json b/store/package-lock.json similarity index 100% rename from online-store/package-lock.json rename to store/package-lock.json diff --git a/online-store/package.json b/store/package.json similarity index 100% rename from online-store/package.json rename to store/package.json diff --git a/online-store/postcss.config.js b/store/postcss.config.js similarity index 100% rename from online-store/postcss.config.js rename to store/postcss.config.js diff --git a/online-store/settings.gradle b/store/settings.gradle similarity index 100% rename from online-store/settings.gradle rename to store/settings.gradle diff --git a/online-store/src/main/docker/.dockerignore b/store/src/main/docker/.dockerignore similarity index 100% rename from online-store/src/main/docker/.dockerignore rename to store/src/main/docker/.dockerignore diff --git a/online-store/src/main/docker/Dockerfile b/store/src/main/docker/Dockerfile similarity index 100% rename from online-store/src/main/docker/Dockerfile rename to store/src/main/docker/Dockerfile diff --git a/online-store/src/main/docker/app.yml b/store/src/main/docker/app.yml similarity index 100% rename from online-store/src/main/docker/app.yml rename to store/src/main/docker/app.yml diff --git a/online-store/src/main/docker/central-server-config/README.md b/store/src/main/docker/central-server-config/README.md similarity index 100% rename from online-store/src/main/docker/central-server-config/README.md rename to store/src/main/docker/central-server-config/README.md diff --git a/online-store/src/main/docker/central-server-config/docker-config/application.yml b/store/src/main/docker/central-server-config/docker-config/application.yml similarity index 100% rename from online-store/src/main/docker/central-server-config/docker-config/application.yml rename to store/src/main/docker/central-server-config/docker-config/application.yml diff --git a/online-store/src/main/docker/central-server-config/localhost-config/application.yml b/store/src/main/docker/central-server-config/localhost-config/application.yml similarity index 100% rename from online-store/src/main/docker/central-server-config/localhost-config/application.yml rename to store/src/main/docker/central-server-config/localhost-config/application.yml diff --git a/online-store/src/main/docker/entrypoint.sh b/store/src/main/docker/entrypoint.sh similarity index 100% rename from online-store/src/main/docker/entrypoint.sh rename to store/src/main/docker/entrypoint.sh diff --git a/online-store/src/main/docker/hazelcast-management-center.yml b/store/src/main/docker/hazelcast-management-center.yml similarity index 100% rename from online-store/src/main/docker/hazelcast-management-center.yml rename to store/src/main/docker/hazelcast-management-center.yml diff --git a/online-store/src/main/docker/jhipster-registry.yml b/store/src/main/docker/jhipster-registry.yml similarity index 100% rename from online-store/src/main/docker/jhipster-registry.yml rename to store/src/main/docker/jhipster-registry.yml diff --git a/online-store/src/main/docker/mysql.yml b/store/src/main/docker/mysql.yml similarity index 100% rename from online-store/src/main/docker/mysql.yml rename to store/src/main/docker/mysql.yml diff --git a/online-store/src/main/docker/sonar.yml b/store/src/main/docker/sonar.yml similarity index 100% rename from online-store/src/main/docker/sonar.yml rename to store/src/main/docker/sonar.yml diff --git a/online-store/src/main/java/com/xebialabs/store/ApplicationWebXml.java b/store/src/main/java/com/xebialabs/store/ApplicationWebXml.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/ApplicationWebXml.java rename to store/src/main/java/com/xebialabs/store/ApplicationWebXml.java diff --git a/online-store/src/main/java/com/xebialabs/store/StoreApp.java b/store/src/main/java/com/xebialabs/store/StoreApp.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/StoreApp.java rename to store/src/main/java/com/xebialabs/store/StoreApp.java diff --git a/online-store/src/main/java/com/xebialabs/store/aop/logging/LoggingAspect.java b/store/src/main/java/com/xebialabs/store/aop/logging/LoggingAspect.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/aop/logging/LoggingAspect.java rename to store/src/main/java/com/xebialabs/store/aop/logging/LoggingAspect.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/ApplicationProperties.java b/store/src/main/java/com/xebialabs/store/config/ApplicationProperties.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/ApplicationProperties.java rename to store/src/main/java/com/xebialabs/store/config/ApplicationProperties.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/AsyncConfiguration.java b/store/src/main/java/com/xebialabs/store/config/AsyncConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/AsyncConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/AsyncConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/CacheConfiguration.java b/store/src/main/java/com/xebialabs/store/config/CacheConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/CacheConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/CacheConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/CloudDatabaseConfiguration.java b/store/src/main/java/com/xebialabs/store/config/CloudDatabaseConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/CloudDatabaseConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/CloudDatabaseConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/Constants.java b/store/src/main/java/com/xebialabs/store/config/Constants.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/Constants.java rename to store/src/main/java/com/xebialabs/store/config/Constants.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/DatabaseConfiguration.java b/store/src/main/java/com/xebialabs/store/config/DatabaseConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/DatabaseConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/DatabaseConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/DateTimeFormatConfiguration.java b/store/src/main/java/com/xebialabs/store/config/DateTimeFormatConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/DateTimeFormatConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/DateTimeFormatConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/DefaultProfileUtil.java b/store/src/main/java/com/xebialabs/store/config/DefaultProfileUtil.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/DefaultProfileUtil.java rename to store/src/main/java/com/xebialabs/store/config/DefaultProfileUtil.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/GatewayConfiguration.java b/store/src/main/java/com/xebialabs/store/config/GatewayConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/GatewayConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/GatewayConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/JacksonConfiguration.java b/store/src/main/java/com/xebialabs/store/config/JacksonConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/JacksonConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/JacksonConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/LiquibaseConfiguration.java b/store/src/main/java/com/xebialabs/store/config/LiquibaseConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/LiquibaseConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/LiquibaseConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/LocaleConfiguration.java b/store/src/main/java/com/xebialabs/store/config/LocaleConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/LocaleConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/LocaleConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/LoggingAspectConfiguration.java b/store/src/main/java/com/xebialabs/store/config/LoggingAspectConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/LoggingAspectConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/LoggingAspectConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/LoggingConfiguration.java b/store/src/main/java/com/xebialabs/store/config/LoggingConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/LoggingConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/LoggingConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/MetricsConfiguration.java b/store/src/main/java/com/xebialabs/store/config/MetricsConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/MetricsConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/MetricsConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/SecurityConfiguration.java b/store/src/main/java/com/xebialabs/store/config/SecurityConfiguration.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/SecurityConfiguration.java rename to store/src/main/java/com/xebialabs/store/config/SecurityConfiguration.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/WebConfigurer.java b/store/src/main/java/com/xebialabs/store/config/WebConfigurer.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/WebConfigurer.java rename to store/src/main/java/com/xebialabs/store/config/WebConfigurer.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/apidoc/GatewaySwaggerResourcesProvider.java b/store/src/main/java/com/xebialabs/store/config/apidoc/GatewaySwaggerResourcesProvider.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/apidoc/GatewaySwaggerResourcesProvider.java rename to store/src/main/java/com/xebialabs/store/config/apidoc/GatewaySwaggerResourcesProvider.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/audit/AuditEventConverter.java b/store/src/main/java/com/xebialabs/store/config/audit/AuditEventConverter.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/audit/AuditEventConverter.java rename to store/src/main/java/com/xebialabs/store/config/audit/AuditEventConverter.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/audit/package-info.java b/store/src/main/java/com/xebialabs/store/config/audit/package-info.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/audit/package-info.java rename to store/src/main/java/com/xebialabs/store/config/audit/package-info.java diff --git a/online-store/src/main/java/com/xebialabs/store/config/package-info.java b/store/src/main/java/com/xebialabs/store/config/package-info.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/config/package-info.java rename to store/src/main/java/com/xebialabs/store/config/package-info.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/AbstractAuditingEntity.java b/store/src/main/java/com/xebialabs/store/domain/AbstractAuditingEntity.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/AbstractAuditingEntity.java rename to store/src/main/java/com/xebialabs/store/domain/AbstractAuditingEntity.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/Authority.java b/store/src/main/java/com/xebialabs/store/domain/Authority.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/Authority.java rename to store/src/main/java/com/xebialabs/store/domain/Authority.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/Customer.java b/store/src/main/java/com/xebialabs/store/domain/Customer.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/Customer.java rename to store/src/main/java/com/xebialabs/store/domain/Customer.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/OrderItem.java b/store/src/main/java/com/xebialabs/store/domain/OrderItem.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/OrderItem.java rename to store/src/main/java/com/xebialabs/store/domain/OrderItem.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/PersistentAuditEvent.java b/store/src/main/java/com/xebialabs/store/domain/PersistentAuditEvent.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/PersistentAuditEvent.java rename to store/src/main/java/com/xebialabs/store/domain/PersistentAuditEvent.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/Product.java b/store/src/main/java/com/xebialabs/store/domain/Product.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/Product.java rename to store/src/main/java/com/xebialabs/store/domain/Product.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/ProductCategory.java b/store/src/main/java/com/xebialabs/store/domain/ProductCategory.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/ProductCategory.java rename to store/src/main/java/com/xebialabs/store/domain/ProductCategory.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/ProductOrder.java b/store/src/main/java/com/xebialabs/store/domain/ProductOrder.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/ProductOrder.java rename to store/src/main/java/com/xebialabs/store/domain/ProductOrder.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/User.java b/store/src/main/java/com/xebialabs/store/domain/User.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/User.java rename to store/src/main/java/com/xebialabs/store/domain/User.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/enumeration/Gender.java b/store/src/main/java/com/xebialabs/store/domain/enumeration/Gender.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/enumeration/Gender.java rename to store/src/main/java/com/xebialabs/store/domain/enumeration/Gender.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/enumeration/OrderItemStatus.java b/store/src/main/java/com/xebialabs/store/domain/enumeration/OrderItemStatus.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/enumeration/OrderItemStatus.java rename to store/src/main/java/com/xebialabs/store/domain/enumeration/OrderItemStatus.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/enumeration/OrderStatus.java b/store/src/main/java/com/xebialabs/store/domain/enumeration/OrderStatus.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/enumeration/OrderStatus.java rename to store/src/main/java/com/xebialabs/store/domain/enumeration/OrderStatus.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/enumeration/Size.java b/store/src/main/java/com/xebialabs/store/domain/enumeration/Size.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/enumeration/Size.java rename to store/src/main/java/com/xebialabs/store/domain/enumeration/Size.java diff --git a/online-store/src/main/java/com/xebialabs/store/domain/package-info.java b/store/src/main/java/com/xebialabs/store/domain/package-info.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/domain/package-info.java rename to store/src/main/java/com/xebialabs/store/domain/package-info.java diff --git a/online-store/src/main/java/com/xebialabs/store/gateway/TokenRelayFilter.java b/store/src/main/java/com/xebialabs/store/gateway/TokenRelayFilter.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/gateway/TokenRelayFilter.java rename to store/src/main/java/com/xebialabs/store/gateway/TokenRelayFilter.java diff --git a/online-store/src/main/java/com/xebialabs/store/gateway/accesscontrol/AccessControlFilter.java b/store/src/main/java/com/xebialabs/store/gateway/accesscontrol/AccessControlFilter.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/gateway/accesscontrol/AccessControlFilter.java rename to store/src/main/java/com/xebialabs/store/gateway/accesscontrol/AccessControlFilter.java diff --git a/online-store/src/main/java/com/xebialabs/store/gateway/ratelimiting/RateLimitingFilter.java b/store/src/main/java/com/xebialabs/store/gateway/ratelimiting/RateLimitingFilter.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/gateway/ratelimiting/RateLimitingFilter.java rename to store/src/main/java/com/xebialabs/store/gateway/ratelimiting/RateLimitingFilter.java diff --git a/online-store/src/main/java/com/xebialabs/store/gateway/responserewriting/SwaggerBasePathRewritingFilter.java b/store/src/main/java/com/xebialabs/store/gateway/responserewriting/SwaggerBasePathRewritingFilter.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/gateway/responserewriting/SwaggerBasePathRewritingFilter.java rename to store/src/main/java/com/xebialabs/store/gateway/responserewriting/SwaggerBasePathRewritingFilter.java diff --git a/online-store/src/main/java/com/xebialabs/store/repository/AuthorityRepository.java b/store/src/main/java/com/xebialabs/store/repository/AuthorityRepository.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/repository/AuthorityRepository.java rename to store/src/main/java/com/xebialabs/store/repository/AuthorityRepository.java diff --git a/online-store/src/main/java/com/xebialabs/store/repository/CustomAuditEventRepository.java b/store/src/main/java/com/xebialabs/store/repository/CustomAuditEventRepository.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/repository/CustomAuditEventRepository.java rename to store/src/main/java/com/xebialabs/store/repository/CustomAuditEventRepository.java diff --git a/online-store/src/main/java/com/xebialabs/store/repository/CustomerRepository.java b/store/src/main/java/com/xebialabs/store/repository/CustomerRepository.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/repository/CustomerRepository.java rename to store/src/main/java/com/xebialabs/store/repository/CustomerRepository.java diff --git a/online-store/src/main/java/com/xebialabs/store/repository/OrderItemRepository.java b/store/src/main/java/com/xebialabs/store/repository/OrderItemRepository.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/repository/OrderItemRepository.java rename to store/src/main/java/com/xebialabs/store/repository/OrderItemRepository.java diff --git a/online-store/src/main/java/com/xebialabs/store/repository/PersistenceAuditEventRepository.java b/store/src/main/java/com/xebialabs/store/repository/PersistenceAuditEventRepository.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/repository/PersistenceAuditEventRepository.java rename to store/src/main/java/com/xebialabs/store/repository/PersistenceAuditEventRepository.java diff --git a/online-store/src/main/java/com/xebialabs/store/repository/ProductCategoryRepository.java b/store/src/main/java/com/xebialabs/store/repository/ProductCategoryRepository.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/repository/ProductCategoryRepository.java rename to store/src/main/java/com/xebialabs/store/repository/ProductCategoryRepository.java diff --git a/online-store/src/main/java/com/xebialabs/store/repository/ProductOrderRepository.java b/store/src/main/java/com/xebialabs/store/repository/ProductOrderRepository.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/repository/ProductOrderRepository.java rename to store/src/main/java/com/xebialabs/store/repository/ProductOrderRepository.java diff --git a/online-store/src/main/java/com/xebialabs/store/repository/ProductRepository.java b/store/src/main/java/com/xebialabs/store/repository/ProductRepository.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/repository/ProductRepository.java rename to store/src/main/java/com/xebialabs/store/repository/ProductRepository.java diff --git a/online-store/src/main/java/com/xebialabs/store/repository/UserRepository.java b/store/src/main/java/com/xebialabs/store/repository/UserRepository.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/repository/UserRepository.java rename to store/src/main/java/com/xebialabs/store/repository/UserRepository.java diff --git a/online-store/src/main/java/com/xebialabs/store/repository/package-info.java b/store/src/main/java/com/xebialabs/store/repository/package-info.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/repository/package-info.java rename to store/src/main/java/com/xebialabs/store/repository/package-info.java diff --git a/online-store/src/main/java/com/xebialabs/store/security/AuthoritiesConstants.java b/store/src/main/java/com/xebialabs/store/security/AuthoritiesConstants.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/security/AuthoritiesConstants.java rename to store/src/main/java/com/xebialabs/store/security/AuthoritiesConstants.java diff --git a/online-store/src/main/java/com/xebialabs/store/security/DomainUserDetailsService.java b/store/src/main/java/com/xebialabs/store/security/DomainUserDetailsService.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/security/DomainUserDetailsService.java rename to store/src/main/java/com/xebialabs/store/security/DomainUserDetailsService.java diff --git a/online-store/src/main/java/com/xebialabs/store/security/SecurityUtils.java b/store/src/main/java/com/xebialabs/store/security/SecurityUtils.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/security/SecurityUtils.java rename to store/src/main/java/com/xebialabs/store/security/SecurityUtils.java diff --git a/online-store/src/main/java/com/xebialabs/store/security/SpringSecurityAuditorAware.java b/store/src/main/java/com/xebialabs/store/security/SpringSecurityAuditorAware.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/security/SpringSecurityAuditorAware.java rename to store/src/main/java/com/xebialabs/store/security/SpringSecurityAuditorAware.java diff --git a/online-store/src/main/java/com/xebialabs/store/security/UserNotActivatedException.java b/store/src/main/java/com/xebialabs/store/security/UserNotActivatedException.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/security/UserNotActivatedException.java rename to store/src/main/java/com/xebialabs/store/security/UserNotActivatedException.java diff --git a/online-store/src/main/java/com/xebialabs/store/security/jwt/JWTConfigurer.java b/store/src/main/java/com/xebialabs/store/security/jwt/JWTConfigurer.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/security/jwt/JWTConfigurer.java rename to store/src/main/java/com/xebialabs/store/security/jwt/JWTConfigurer.java diff --git a/online-store/src/main/java/com/xebialabs/store/security/jwt/JWTFilter.java b/store/src/main/java/com/xebialabs/store/security/jwt/JWTFilter.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/security/jwt/JWTFilter.java rename to store/src/main/java/com/xebialabs/store/security/jwt/JWTFilter.java diff --git a/online-store/src/main/java/com/xebialabs/store/security/jwt/TokenProvider.java b/store/src/main/java/com/xebialabs/store/security/jwt/TokenProvider.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/security/jwt/TokenProvider.java rename to store/src/main/java/com/xebialabs/store/security/jwt/TokenProvider.java diff --git a/online-store/src/main/java/com/xebialabs/store/security/package-info.java b/store/src/main/java/com/xebialabs/store/security/package-info.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/security/package-info.java rename to store/src/main/java/com/xebialabs/store/security/package-info.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/AuditEventService.java b/store/src/main/java/com/xebialabs/store/service/AuditEventService.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/AuditEventService.java rename to store/src/main/java/com/xebialabs/store/service/AuditEventService.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/CustomerService.java b/store/src/main/java/com/xebialabs/store/service/CustomerService.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/CustomerService.java rename to store/src/main/java/com/xebialabs/store/service/CustomerService.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/MailService.java b/store/src/main/java/com/xebialabs/store/service/MailService.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/MailService.java rename to store/src/main/java/com/xebialabs/store/service/MailService.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/OrderItemService.java b/store/src/main/java/com/xebialabs/store/service/OrderItemService.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/OrderItemService.java rename to store/src/main/java/com/xebialabs/store/service/OrderItemService.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/ProductCategoryService.java b/store/src/main/java/com/xebialabs/store/service/ProductCategoryService.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/ProductCategoryService.java rename to store/src/main/java/com/xebialabs/store/service/ProductCategoryService.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/ProductOrderService.java b/store/src/main/java/com/xebialabs/store/service/ProductOrderService.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/ProductOrderService.java rename to store/src/main/java/com/xebialabs/store/service/ProductOrderService.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/ProductService.java b/store/src/main/java/com/xebialabs/store/service/ProductService.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/ProductService.java rename to store/src/main/java/com/xebialabs/store/service/ProductService.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/UserService.java b/store/src/main/java/com/xebialabs/store/service/UserService.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/UserService.java rename to store/src/main/java/com/xebialabs/store/service/UserService.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/dto/PasswordChangeDTO.java b/store/src/main/java/com/xebialabs/store/service/dto/PasswordChangeDTO.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/dto/PasswordChangeDTO.java rename to store/src/main/java/com/xebialabs/store/service/dto/PasswordChangeDTO.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/dto/UserDTO.java b/store/src/main/java/com/xebialabs/store/service/dto/UserDTO.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/dto/UserDTO.java rename to store/src/main/java/com/xebialabs/store/service/dto/UserDTO.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/dto/package-info.java b/store/src/main/java/com/xebialabs/store/service/dto/package-info.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/dto/package-info.java rename to store/src/main/java/com/xebialabs/store/service/dto/package-info.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/mapper/UserMapper.java b/store/src/main/java/com/xebialabs/store/service/mapper/UserMapper.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/mapper/UserMapper.java rename to store/src/main/java/com/xebialabs/store/service/mapper/UserMapper.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/mapper/package-info.java b/store/src/main/java/com/xebialabs/store/service/mapper/package-info.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/mapper/package-info.java rename to store/src/main/java/com/xebialabs/store/service/mapper/package-info.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/package-info.java b/store/src/main/java/com/xebialabs/store/service/package-info.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/package-info.java rename to store/src/main/java/com/xebialabs/store/service/package-info.java diff --git a/online-store/src/main/java/com/xebialabs/store/service/util/RandomUtil.java b/store/src/main/java/com/xebialabs/store/service/util/RandomUtil.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/service/util/RandomUtil.java rename to store/src/main/java/com/xebialabs/store/service/util/RandomUtil.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/AccountResource.java b/store/src/main/java/com/xebialabs/store/web/rest/AccountResource.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/AccountResource.java rename to store/src/main/java/com/xebialabs/store/web/rest/AccountResource.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/AuditResource.java b/store/src/main/java/com/xebialabs/store/web/rest/AuditResource.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/AuditResource.java rename to store/src/main/java/com/xebialabs/store/web/rest/AuditResource.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/CustomerResource.java b/store/src/main/java/com/xebialabs/store/web/rest/CustomerResource.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/CustomerResource.java rename to store/src/main/java/com/xebialabs/store/web/rest/CustomerResource.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/GatewayResource.java b/store/src/main/java/com/xebialabs/store/web/rest/GatewayResource.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/GatewayResource.java rename to store/src/main/java/com/xebialabs/store/web/rest/GatewayResource.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/LogsResource.java b/store/src/main/java/com/xebialabs/store/web/rest/LogsResource.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/LogsResource.java rename to store/src/main/java/com/xebialabs/store/web/rest/LogsResource.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/OrderItemResource.java b/store/src/main/java/com/xebialabs/store/web/rest/OrderItemResource.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/OrderItemResource.java rename to store/src/main/java/com/xebialabs/store/web/rest/OrderItemResource.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/ProductCategoryResource.java b/store/src/main/java/com/xebialabs/store/web/rest/ProductCategoryResource.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/ProductCategoryResource.java rename to store/src/main/java/com/xebialabs/store/web/rest/ProductCategoryResource.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/ProductOrderResource.java b/store/src/main/java/com/xebialabs/store/web/rest/ProductOrderResource.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/ProductOrderResource.java rename to store/src/main/java/com/xebialabs/store/web/rest/ProductOrderResource.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/ProductResource.java b/store/src/main/java/com/xebialabs/store/web/rest/ProductResource.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/ProductResource.java rename to store/src/main/java/com/xebialabs/store/web/rest/ProductResource.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/UserJWTController.java b/store/src/main/java/com/xebialabs/store/web/rest/UserJWTController.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/UserJWTController.java rename to store/src/main/java/com/xebialabs/store/web/rest/UserJWTController.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/UserResource.java b/store/src/main/java/com/xebialabs/store/web/rest/UserResource.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/UserResource.java rename to store/src/main/java/com/xebialabs/store/web/rest/UserResource.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/errors/BadRequestAlertException.java b/store/src/main/java/com/xebialabs/store/web/rest/errors/BadRequestAlertException.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/errors/BadRequestAlertException.java rename to store/src/main/java/com/xebialabs/store/web/rest/errors/BadRequestAlertException.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/errors/CustomParameterizedException.java b/store/src/main/java/com/xebialabs/store/web/rest/errors/CustomParameterizedException.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/errors/CustomParameterizedException.java rename to store/src/main/java/com/xebialabs/store/web/rest/errors/CustomParameterizedException.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/errors/EmailAlreadyUsedException.java b/store/src/main/java/com/xebialabs/store/web/rest/errors/EmailAlreadyUsedException.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/errors/EmailAlreadyUsedException.java rename to store/src/main/java/com/xebialabs/store/web/rest/errors/EmailAlreadyUsedException.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/errors/EmailNotFoundException.java b/store/src/main/java/com/xebialabs/store/web/rest/errors/EmailNotFoundException.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/errors/EmailNotFoundException.java rename to store/src/main/java/com/xebialabs/store/web/rest/errors/EmailNotFoundException.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/errors/ErrorConstants.java b/store/src/main/java/com/xebialabs/store/web/rest/errors/ErrorConstants.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/errors/ErrorConstants.java rename to store/src/main/java/com/xebialabs/store/web/rest/errors/ErrorConstants.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/errors/ExceptionTranslator.java b/store/src/main/java/com/xebialabs/store/web/rest/errors/ExceptionTranslator.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/errors/ExceptionTranslator.java rename to store/src/main/java/com/xebialabs/store/web/rest/errors/ExceptionTranslator.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/errors/FieldErrorVM.java b/store/src/main/java/com/xebialabs/store/web/rest/errors/FieldErrorVM.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/errors/FieldErrorVM.java rename to store/src/main/java/com/xebialabs/store/web/rest/errors/FieldErrorVM.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/errors/InternalServerErrorException.java b/store/src/main/java/com/xebialabs/store/web/rest/errors/InternalServerErrorException.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/errors/InternalServerErrorException.java rename to store/src/main/java/com/xebialabs/store/web/rest/errors/InternalServerErrorException.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/errors/InvalidPasswordException.java b/store/src/main/java/com/xebialabs/store/web/rest/errors/InvalidPasswordException.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/errors/InvalidPasswordException.java rename to store/src/main/java/com/xebialabs/store/web/rest/errors/InvalidPasswordException.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/errors/LoginAlreadyUsedException.java b/store/src/main/java/com/xebialabs/store/web/rest/errors/LoginAlreadyUsedException.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/errors/LoginAlreadyUsedException.java rename to store/src/main/java/com/xebialabs/store/web/rest/errors/LoginAlreadyUsedException.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/errors/package-info.java b/store/src/main/java/com/xebialabs/store/web/rest/errors/package-info.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/errors/package-info.java rename to store/src/main/java/com/xebialabs/store/web/rest/errors/package-info.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/package-info.java b/store/src/main/java/com/xebialabs/store/web/rest/package-info.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/package-info.java rename to store/src/main/java/com/xebialabs/store/web/rest/package-info.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/util/HeaderUtil.java b/store/src/main/java/com/xebialabs/store/web/rest/util/HeaderUtil.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/util/HeaderUtil.java rename to store/src/main/java/com/xebialabs/store/web/rest/util/HeaderUtil.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/util/PaginationUtil.java b/store/src/main/java/com/xebialabs/store/web/rest/util/PaginationUtil.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/util/PaginationUtil.java rename to store/src/main/java/com/xebialabs/store/web/rest/util/PaginationUtil.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/vm/KeyAndPasswordVM.java b/store/src/main/java/com/xebialabs/store/web/rest/vm/KeyAndPasswordVM.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/vm/KeyAndPasswordVM.java rename to store/src/main/java/com/xebialabs/store/web/rest/vm/KeyAndPasswordVM.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/vm/LoggerVM.java b/store/src/main/java/com/xebialabs/store/web/rest/vm/LoggerVM.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/vm/LoggerVM.java rename to store/src/main/java/com/xebialabs/store/web/rest/vm/LoggerVM.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/vm/LoginVM.java b/store/src/main/java/com/xebialabs/store/web/rest/vm/LoginVM.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/vm/LoginVM.java rename to store/src/main/java/com/xebialabs/store/web/rest/vm/LoginVM.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/vm/ManagedUserVM.java b/store/src/main/java/com/xebialabs/store/web/rest/vm/ManagedUserVM.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/vm/ManagedUserVM.java rename to store/src/main/java/com/xebialabs/store/web/rest/vm/ManagedUserVM.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/vm/RouteVM.java b/store/src/main/java/com/xebialabs/store/web/rest/vm/RouteVM.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/vm/RouteVM.java rename to store/src/main/java/com/xebialabs/store/web/rest/vm/RouteVM.java diff --git a/online-store/src/main/java/com/xebialabs/store/web/rest/vm/package-info.java b/store/src/main/java/com/xebialabs/store/web/rest/vm/package-info.java similarity index 100% rename from online-store/src/main/java/com/xebialabs/store/web/rest/vm/package-info.java rename to store/src/main/java/com/xebialabs/store/web/rest/vm/package-info.java diff --git a/online-store/src/main/resources/.h2.server.properties b/store/src/main/resources/.h2.server.properties similarity index 100% rename from online-store/src/main/resources/.h2.server.properties rename to store/src/main/resources/.h2.server.properties diff --git a/online-store/src/main/resources/banner.txt b/store/src/main/resources/banner.txt similarity index 100% rename from online-store/src/main/resources/banner.txt rename to store/src/main/resources/banner.txt diff --git a/online-store/src/main/resources/config/application-dev.yml b/store/src/main/resources/config/application-dev.yml similarity index 100% rename from online-store/src/main/resources/config/application-dev.yml rename to store/src/main/resources/config/application-dev.yml diff --git a/online-store/src/main/resources/config/application-prod.yml b/store/src/main/resources/config/application-prod.yml similarity index 100% rename from online-store/src/main/resources/config/application-prod.yml rename to store/src/main/resources/config/application-prod.yml diff --git a/online-store/src/main/resources/config/application-tls.yml b/store/src/main/resources/config/application-tls.yml similarity index 100% rename from online-store/src/main/resources/config/application-tls.yml rename to store/src/main/resources/config/application-tls.yml diff --git a/online-store/src/main/resources/config/application.yml b/store/src/main/resources/config/application.yml similarity index 100% rename from online-store/src/main/resources/config/application.yml rename to store/src/main/resources/config/application.yml diff --git a/online-store/src/main/resources/config/bootstrap-prod.yml b/store/src/main/resources/config/bootstrap-prod.yml similarity index 100% rename from online-store/src/main/resources/config/bootstrap-prod.yml rename to store/src/main/resources/config/bootstrap-prod.yml diff --git a/online-store/src/main/resources/config/bootstrap.yml b/store/src/main/resources/config/bootstrap.yml similarity index 100% rename from online-store/src/main/resources/config/bootstrap.yml rename to store/src/main/resources/config/bootstrap.yml diff --git a/online-store/src/main/resources/config/liquibase/authorities.csv b/store/src/main/resources/config/liquibase/authorities.csv similarity index 100% rename from online-store/src/main/resources/config/liquibase/authorities.csv rename to store/src/main/resources/config/liquibase/authorities.csv diff --git a/online-store/src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml b/store/src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml similarity index 100% rename from online-store/src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml rename to store/src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml diff --git a/online-store/src/main/resources/config/liquibase/changelog/20180912102127_added_entity_Product.xml b/store/src/main/resources/config/liquibase/changelog/20180912102127_added_entity_Product.xml similarity index 100% rename from online-store/src/main/resources/config/liquibase/changelog/20180912102127_added_entity_Product.xml rename to store/src/main/resources/config/liquibase/changelog/20180912102127_added_entity_Product.xml diff --git a/online-store/src/main/resources/config/liquibase/changelog/20180912102127_added_entity_constraints_Product.xml b/store/src/main/resources/config/liquibase/changelog/20180912102127_added_entity_constraints_Product.xml similarity index 100% rename from online-store/src/main/resources/config/liquibase/changelog/20180912102127_added_entity_constraints_Product.xml rename to store/src/main/resources/config/liquibase/changelog/20180912102127_added_entity_constraints_Product.xml diff --git a/online-store/src/main/resources/config/liquibase/changelog/20180912102128_added_entity_ProductCategory.xml b/store/src/main/resources/config/liquibase/changelog/20180912102128_added_entity_ProductCategory.xml similarity index 100% rename from online-store/src/main/resources/config/liquibase/changelog/20180912102128_added_entity_ProductCategory.xml rename to store/src/main/resources/config/liquibase/changelog/20180912102128_added_entity_ProductCategory.xml diff --git a/online-store/src/main/resources/config/liquibase/changelog/20180912102129_added_entity_Customer.xml b/store/src/main/resources/config/liquibase/changelog/20180912102129_added_entity_Customer.xml similarity index 100% rename from online-store/src/main/resources/config/liquibase/changelog/20180912102129_added_entity_Customer.xml rename to store/src/main/resources/config/liquibase/changelog/20180912102129_added_entity_Customer.xml diff --git a/online-store/src/main/resources/config/liquibase/changelog/20180912102129_added_entity_constraints_Customer.xml b/store/src/main/resources/config/liquibase/changelog/20180912102129_added_entity_constraints_Customer.xml similarity index 100% rename from online-store/src/main/resources/config/liquibase/changelog/20180912102129_added_entity_constraints_Customer.xml rename to store/src/main/resources/config/liquibase/changelog/20180912102129_added_entity_constraints_Customer.xml diff --git a/online-store/src/main/resources/config/liquibase/changelog/20180912102130_added_entity_ProductOrder.xml b/store/src/main/resources/config/liquibase/changelog/20180912102130_added_entity_ProductOrder.xml similarity index 100% rename from online-store/src/main/resources/config/liquibase/changelog/20180912102130_added_entity_ProductOrder.xml rename to store/src/main/resources/config/liquibase/changelog/20180912102130_added_entity_ProductOrder.xml diff --git a/online-store/src/main/resources/config/liquibase/changelog/20180912102130_added_entity_constraints_ProductOrder.xml b/store/src/main/resources/config/liquibase/changelog/20180912102130_added_entity_constraints_ProductOrder.xml similarity index 100% rename from online-store/src/main/resources/config/liquibase/changelog/20180912102130_added_entity_constraints_ProductOrder.xml rename to store/src/main/resources/config/liquibase/changelog/20180912102130_added_entity_constraints_ProductOrder.xml diff --git a/online-store/src/main/resources/config/liquibase/changelog/20180912102131_added_entity_OrderItem.xml b/store/src/main/resources/config/liquibase/changelog/20180912102131_added_entity_OrderItem.xml similarity index 100% rename from online-store/src/main/resources/config/liquibase/changelog/20180912102131_added_entity_OrderItem.xml rename to store/src/main/resources/config/liquibase/changelog/20180912102131_added_entity_OrderItem.xml diff --git a/online-store/src/main/resources/config/liquibase/changelog/20180912102131_added_entity_constraints_OrderItem.xml b/store/src/main/resources/config/liquibase/changelog/20180912102131_added_entity_constraints_OrderItem.xml similarity index 100% rename from online-store/src/main/resources/config/liquibase/changelog/20180912102131_added_entity_constraints_OrderItem.xml rename to store/src/main/resources/config/liquibase/changelog/20180912102131_added_entity_constraints_OrderItem.xml diff --git a/online-store/src/main/resources/config/liquibase/master.xml b/store/src/main/resources/config/liquibase/master.xml similarity index 100% rename from online-store/src/main/resources/config/liquibase/master.xml rename to store/src/main/resources/config/liquibase/master.xml diff --git a/online-store/src/main/resources/config/liquibase/users.csv b/store/src/main/resources/config/liquibase/users.csv similarity index 100% rename from online-store/src/main/resources/config/liquibase/users.csv rename to store/src/main/resources/config/liquibase/users.csv diff --git a/online-store/src/main/resources/config/liquibase/users_authorities.csv b/store/src/main/resources/config/liquibase/users_authorities.csv similarity index 100% rename from online-store/src/main/resources/config/liquibase/users_authorities.csv rename to store/src/main/resources/config/liquibase/users_authorities.csv diff --git a/online-store/src/main/resources/config/tls/keystore.p12 b/store/src/main/resources/config/tls/keystore.p12 similarity index 100% rename from online-store/src/main/resources/config/tls/keystore.p12 rename to store/src/main/resources/config/tls/keystore.p12 diff --git a/online-store/src/main/resources/i18n/messages.properties b/store/src/main/resources/i18n/messages.properties similarity index 100% rename from online-store/src/main/resources/i18n/messages.properties rename to store/src/main/resources/i18n/messages.properties diff --git a/online-store/src/main/resources/i18n/messages_en.properties b/store/src/main/resources/i18n/messages_en.properties similarity index 100% rename from online-store/src/main/resources/i18n/messages_en.properties rename to store/src/main/resources/i18n/messages_en.properties diff --git a/online-store/src/main/resources/i18n/messages_nl.properties b/store/src/main/resources/i18n/messages_nl.properties similarity index 100% rename from online-store/src/main/resources/i18n/messages_nl.properties rename to store/src/main/resources/i18n/messages_nl.properties diff --git a/online-store/src/main/resources/logback-spring.xml b/store/src/main/resources/logback-spring.xml similarity index 100% rename from online-store/src/main/resources/logback-spring.xml rename to store/src/main/resources/logback-spring.xml diff --git a/online-store/src/main/resources/templates/error.html b/store/src/main/resources/templates/error.html similarity index 100% rename from online-store/src/main/resources/templates/error.html rename to store/src/main/resources/templates/error.html diff --git a/online-store/src/main/resources/templates/mail/activationEmail.html b/store/src/main/resources/templates/mail/activationEmail.html similarity index 100% rename from online-store/src/main/resources/templates/mail/activationEmail.html rename to store/src/main/resources/templates/mail/activationEmail.html diff --git a/online-store/src/main/resources/templates/mail/creationEmail.html b/store/src/main/resources/templates/mail/creationEmail.html similarity index 100% rename from online-store/src/main/resources/templates/mail/creationEmail.html rename to store/src/main/resources/templates/mail/creationEmail.html diff --git a/online-store/src/main/resources/templates/mail/passwordResetEmail.html b/store/src/main/resources/templates/mail/passwordResetEmail.html similarity index 100% rename from online-store/src/main/resources/templates/mail/passwordResetEmail.html rename to store/src/main/resources/templates/mail/passwordResetEmail.html diff --git a/online-store/src/main/webapp/404.html b/store/src/main/webapp/404.html similarity index 100% rename from online-store/src/main/webapp/404.html rename to store/src/main/webapp/404.html diff --git a/online-store/src/main/webapp/app/_bootstrap-variables.scss b/store/src/main/webapp/app/_bootstrap-variables.scss similarity index 100% rename from online-store/src/main/webapp/app/_bootstrap-variables.scss rename to store/src/main/webapp/app/_bootstrap-variables.scss diff --git a/online-store/src/main/webapp/app/app.scss b/store/src/main/webapp/app/app.scss similarity index 100% rename from online-store/src/main/webapp/app/app.scss rename to store/src/main/webapp/app/app.scss diff --git a/online-store/src/main/webapp/app/app.tsx b/store/src/main/webapp/app/app.tsx similarity index 100% rename from online-store/src/main/webapp/app/app.tsx rename to store/src/main/webapp/app/app.tsx diff --git a/online-store/src/main/webapp/app/config/axios-interceptor.ts b/store/src/main/webapp/app/config/axios-interceptor.ts similarity index 100% rename from online-store/src/main/webapp/app/config/axios-interceptor.ts rename to store/src/main/webapp/app/config/axios-interceptor.ts diff --git a/online-store/src/main/webapp/app/config/constants.ts b/store/src/main/webapp/app/config/constants.ts similarity index 100% rename from online-store/src/main/webapp/app/config/constants.ts rename to store/src/main/webapp/app/config/constants.ts diff --git a/online-store/src/main/webapp/app/config/devtools.tsx b/store/src/main/webapp/app/config/devtools.tsx similarity index 100% rename from online-store/src/main/webapp/app/config/devtools.tsx rename to store/src/main/webapp/app/config/devtools.tsx diff --git a/online-store/src/main/webapp/app/config/error-middleware.ts b/store/src/main/webapp/app/config/error-middleware.ts similarity index 100% rename from online-store/src/main/webapp/app/config/error-middleware.ts rename to store/src/main/webapp/app/config/error-middleware.ts diff --git a/online-store/src/main/webapp/app/config/icon-loader.ts b/store/src/main/webapp/app/config/icon-loader.ts similarity index 100% rename from online-store/src/main/webapp/app/config/icon-loader.ts rename to store/src/main/webapp/app/config/icon-loader.ts diff --git a/online-store/src/main/webapp/app/config/logger-middleware.ts b/store/src/main/webapp/app/config/logger-middleware.ts similarity index 100% rename from online-store/src/main/webapp/app/config/logger-middleware.ts rename to store/src/main/webapp/app/config/logger-middleware.ts diff --git a/online-store/src/main/webapp/app/config/notification-middleware.ts b/store/src/main/webapp/app/config/notification-middleware.ts similarity index 100% rename from online-store/src/main/webapp/app/config/notification-middleware.ts rename to store/src/main/webapp/app/config/notification-middleware.ts diff --git a/online-store/src/main/webapp/app/config/store.ts b/store/src/main/webapp/app/config/store.ts similarity index 100% rename from online-store/src/main/webapp/app/config/store.ts rename to store/src/main/webapp/app/config/store.ts diff --git a/online-store/src/main/webapp/app/config/translation.ts b/store/src/main/webapp/app/config/translation.ts similarity index 100% rename from online-store/src/main/webapp/app/config/translation.ts rename to store/src/main/webapp/app/config/translation.ts diff --git a/online-store/src/main/webapp/app/entities/customer/customer-delete-dialog.tsx b/store/src/main/webapp/app/entities/customer/customer-delete-dialog.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/customer/customer-delete-dialog.tsx rename to store/src/main/webapp/app/entities/customer/customer-delete-dialog.tsx diff --git a/online-store/src/main/webapp/app/entities/customer/customer-detail.tsx b/store/src/main/webapp/app/entities/customer/customer-detail.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/customer/customer-detail.tsx rename to store/src/main/webapp/app/entities/customer/customer-detail.tsx diff --git a/online-store/src/main/webapp/app/entities/customer/customer-update.tsx b/store/src/main/webapp/app/entities/customer/customer-update.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/customer/customer-update.tsx rename to store/src/main/webapp/app/entities/customer/customer-update.tsx diff --git a/online-store/src/main/webapp/app/entities/customer/customer.reducer.ts b/store/src/main/webapp/app/entities/customer/customer.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/entities/customer/customer.reducer.ts rename to store/src/main/webapp/app/entities/customer/customer.reducer.ts diff --git a/online-store/src/main/webapp/app/entities/customer/customer.tsx b/store/src/main/webapp/app/entities/customer/customer.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/customer/customer.tsx rename to store/src/main/webapp/app/entities/customer/customer.tsx diff --git a/online-store/src/main/webapp/app/entities/customer/index.tsx b/store/src/main/webapp/app/entities/customer/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/customer/index.tsx rename to store/src/main/webapp/app/entities/customer/index.tsx diff --git a/online-store/src/main/webapp/app/entities/index.tsx b/store/src/main/webapp/app/entities/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/index.tsx rename to store/src/main/webapp/app/entities/index.tsx diff --git a/online-store/src/main/webapp/app/entities/invoice/invoice/index.tsx b/store/src/main/webapp/app/entities/invoice/invoice/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/invoice/index.tsx rename to store/src/main/webapp/app/entities/invoice/invoice/index.tsx diff --git a/online-store/src/main/webapp/app/entities/invoice/invoice/invoice-delete-dialog.tsx b/store/src/main/webapp/app/entities/invoice/invoice/invoice-delete-dialog.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/invoice/invoice-delete-dialog.tsx rename to store/src/main/webapp/app/entities/invoice/invoice/invoice-delete-dialog.tsx diff --git a/online-store/src/main/webapp/app/entities/invoice/invoice/invoice-detail.tsx b/store/src/main/webapp/app/entities/invoice/invoice/invoice-detail.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/invoice/invoice-detail.tsx rename to store/src/main/webapp/app/entities/invoice/invoice/invoice-detail.tsx diff --git a/online-store/src/main/webapp/app/entities/invoice/invoice/invoice-update.tsx b/store/src/main/webapp/app/entities/invoice/invoice/invoice-update.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/invoice/invoice-update.tsx rename to store/src/main/webapp/app/entities/invoice/invoice/invoice-update.tsx diff --git a/online-store/src/main/webapp/app/entities/invoice/invoice/invoice.reducer.ts b/store/src/main/webapp/app/entities/invoice/invoice/invoice.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/invoice/invoice.reducer.ts rename to store/src/main/webapp/app/entities/invoice/invoice/invoice.reducer.ts diff --git a/online-store/src/main/webapp/app/entities/invoice/invoice/invoice.tsx b/store/src/main/webapp/app/entities/invoice/invoice/invoice.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/invoice/invoice.tsx rename to store/src/main/webapp/app/entities/invoice/invoice/invoice.tsx diff --git a/online-store/src/main/webapp/app/entities/invoice/shipment/index.tsx b/store/src/main/webapp/app/entities/invoice/shipment/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/shipment/index.tsx rename to store/src/main/webapp/app/entities/invoice/shipment/index.tsx diff --git a/online-store/src/main/webapp/app/entities/invoice/shipment/shipment-delete-dialog.tsx b/store/src/main/webapp/app/entities/invoice/shipment/shipment-delete-dialog.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/shipment/shipment-delete-dialog.tsx rename to store/src/main/webapp/app/entities/invoice/shipment/shipment-delete-dialog.tsx diff --git a/online-store/src/main/webapp/app/entities/invoice/shipment/shipment-detail.tsx b/store/src/main/webapp/app/entities/invoice/shipment/shipment-detail.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/shipment/shipment-detail.tsx rename to store/src/main/webapp/app/entities/invoice/shipment/shipment-detail.tsx diff --git a/online-store/src/main/webapp/app/entities/invoice/shipment/shipment-update.tsx b/store/src/main/webapp/app/entities/invoice/shipment/shipment-update.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/shipment/shipment-update.tsx rename to store/src/main/webapp/app/entities/invoice/shipment/shipment-update.tsx diff --git a/online-store/src/main/webapp/app/entities/invoice/shipment/shipment.reducer.ts b/store/src/main/webapp/app/entities/invoice/shipment/shipment.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/shipment/shipment.reducer.ts rename to store/src/main/webapp/app/entities/invoice/shipment/shipment.reducer.ts diff --git a/online-store/src/main/webapp/app/entities/invoice/shipment/shipment.tsx b/store/src/main/webapp/app/entities/invoice/shipment/shipment.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/invoice/shipment/shipment.tsx rename to store/src/main/webapp/app/entities/invoice/shipment/shipment.tsx diff --git a/online-store/src/main/webapp/app/entities/notification/notification/index.tsx b/store/src/main/webapp/app/entities/notification/notification/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/notification/notification/index.tsx rename to store/src/main/webapp/app/entities/notification/notification/index.tsx diff --git a/online-store/src/main/webapp/app/entities/notification/notification/notification-delete-dialog.tsx b/store/src/main/webapp/app/entities/notification/notification/notification-delete-dialog.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/notification/notification/notification-delete-dialog.tsx rename to store/src/main/webapp/app/entities/notification/notification/notification-delete-dialog.tsx diff --git a/online-store/src/main/webapp/app/entities/notification/notification/notification-detail.tsx b/store/src/main/webapp/app/entities/notification/notification/notification-detail.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/notification/notification/notification-detail.tsx rename to store/src/main/webapp/app/entities/notification/notification/notification-detail.tsx diff --git a/online-store/src/main/webapp/app/entities/notification/notification/notification-update.tsx b/store/src/main/webapp/app/entities/notification/notification/notification-update.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/notification/notification/notification-update.tsx rename to store/src/main/webapp/app/entities/notification/notification/notification-update.tsx diff --git a/online-store/src/main/webapp/app/entities/notification/notification/notification.reducer.ts b/store/src/main/webapp/app/entities/notification/notification/notification.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/entities/notification/notification/notification.reducer.ts rename to store/src/main/webapp/app/entities/notification/notification/notification.reducer.ts diff --git a/online-store/src/main/webapp/app/entities/notification/notification/notification.tsx b/store/src/main/webapp/app/entities/notification/notification/notification.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/notification/notification/notification.tsx rename to store/src/main/webapp/app/entities/notification/notification/notification.tsx diff --git a/online-store/src/main/webapp/app/entities/order-item/index.tsx b/store/src/main/webapp/app/entities/order-item/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/order-item/index.tsx rename to store/src/main/webapp/app/entities/order-item/index.tsx diff --git a/online-store/src/main/webapp/app/entities/order-item/order-item-delete-dialog.tsx b/store/src/main/webapp/app/entities/order-item/order-item-delete-dialog.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/order-item/order-item-delete-dialog.tsx rename to store/src/main/webapp/app/entities/order-item/order-item-delete-dialog.tsx diff --git a/online-store/src/main/webapp/app/entities/order-item/order-item-detail.tsx b/store/src/main/webapp/app/entities/order-item/order-item-detail.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/order-item/order-item-detail.tsx rename to store/src/main/webapp/app/entities/order-item/order-item-detail.tsx diff --git a/online-store/src/main/webapp/app/entities/order-item/order-item-update.tsx b/store/src/main/webapp/app/entities/order-item/order-item-update.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/order-item/order-item-update.tsx rename to store/src/main/webapp/app/entities/order-item/order-item-update.tsx diff --git a/online-store/src/main/webapp/app/entities/order-item/order-item.reducer.ts b/store/src/main/webapp/app/entities/order-item/order-item.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/entities/order-item/order-item.reducer.ts rename to store/src/main/webapp/app/entities/order-item/order-item.reducer.ts diff --git a/online-store/src/main/webapp/app/entities/order-item/order-item.tsx b/store/src/main/webapp/app/entities/order-item/order-item.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/order-item/order-item.tsx rename to store/src/main/webapp/app/entities/order-item/order-item.tsx diff --git a/online-store/src/main/webapp/app/entities/product-category/index.tsx b/store/src/main/webapp/app/entities/product-category/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product-category/index.tsx rename to store/src/main/webapp/app/entities/product-category/index.tsx diff --git a/online-store/src/main/webapp/app/entities/product-category/product-category-delete-dialog.tsx b/store/src/main/webapp/app/entities/product-category/product-category-delete-dialog.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product-category/product-category-delete-dialog.tsx rename to store/src/main/webapp/app/entities/product-category/product-category-delete-dialog.tsx diff --git a/online-store/src/main/webapp/app/entities/product-category/product-category-detail.tsx b/store/src/main/webapp/app/entities/product-category/product-category-detail.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product-category/product-category-detail.tsx rename to store/src/main/webapp/app/entities/product-category/product-category-detail.tsx diff --git a/online-store/src/main/webapp/app/entities/product-category/product-category-update.tsx b/store/src/main/webapp/app/entities/product-category/product-category-update.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product-category/product-category-update.tsx rename to store/src/main/webapp/app/entities/product-category/product-category-update.tsx diff --git a/online-store/src/main/webapp/app/entities/product-category/product-category.reducer.ts b/store/src/main/webapp/app/entities/product-category/product-category.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/entities/product-category/product-category.reducer.ts rename to store/src/main/webapp/app/entities/product-category/product-category.reducer.ts diff --git a/online-store/src/main/webapp/app/entities/product-category/product-category.tsx b/store/src/main/webapp/app/entities/product-category/product-category.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product-category/product-category.tsx rename to store/src/main/webapp/app/entities/product-category/product-category.tsx diff --git a/online-store/src/main/webapp/app/entities/product-order/index.tsx b/store/src/main/webapp/app/entities/product-order/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product-order/index.tsx rename to store/src/main/webapp/app/entities/product-order/index.tsx diff --git a/online-store/src/main/webapp/app/entities/product-order/product-order-delete-dialog.tsx b/store/src/main/webapp/app/entities/product-order/product-order-delete-dialog.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product-order/product-order-delete-dialog.tsx rename to store/src/main/webapp/app/entities/product-order/product-order-delete-dialog.tsx diff --git a/online-store/src/main/webapp/app/entities/product-order/product-order-detail.tsx b/store/src/main/webapp/app/entities/product-order/product-order-detail.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product-order/product-order-detail.tsx rename to store/src/main/webapp/app/entities/product-order/product-order-detail.tsx diff --git a/online-store/src/main/webapp/app/entities/product-order/product-order-update.tsx b/store/src/main/webapp/app/entities/product-order/product-order-update.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product-order/product-order-update.tsx rename to store/src/main/webapp/app/entities/product-order/product-order-update.tsx diff --git a/online-store/src/main/webapp/app/entities/product-order/product-order.reducer.ts b/store/src/main/webapp/app/entities/product-order/product-order.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/entities/product-order/product-order.reducer.ts rename to store/src/main/webapp/app/entities/product-order/product-order.reducer.ts diff --git a/online-store/src/main/webapp/app/entities/product-order/product-order.tsx b/store/src/main/webapp/app/entities/product-order/product-order.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product-order/product-order.tsx rename to store/src/main/webapp/app/entities/product-order/product-order.tsx diff --git a/online-store/src/main/webapp/app/entities/product/index.tsx b/store/src/main/webapp/app/entities/product/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product/index.tsx rename to store/src/main/webapp/app/entities/product/index.tsx diff --git a/online-store/src/main/webapp/app/entities/product/product-delete-dialog.tsx b/store/src/main/webapp/app/entities/product/product-delete-dialog.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product/product-delete-dialog.tsx rename to store/src/main/webapp/app/entities/product/product-delete-dialog.tsx diff --git a/online-store/src/main/webapp/app/entities/product/product-detail.tsx b/store/src/main/webapp/app/entities/product/product-detail.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product/product-detail.tsx rename to store/src/main/webapp/app/entities/product/product-detail.tsx diff --git a/online-store/src/main/webapp/app/entities/product/product-update.tsx b/store/src/main/webapp/app/entities/product/product-update.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product/product-update.tsx rename to store/src/main/webapp/app/entities/product/product-update.tsx diff --git a/online-store/src/main/webapp/app/entities/product/product.reducer.ts b/store/src/main/webapp/app/entities/product/product.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/entities/product/product.reducer.ts rename to store/src/main/webapp/app/entities/product/product.reducer.ts diff --git a/online-store/src/main/webapp/app/entities/product/product.tsx b/store/src/main/webapp/app/entities/product/product.tsx similarity index 100% rename from online-store/src/main/webapp/app/entities/product/product.tsx rename to store/src/main/webapp/app/entities/product/product.tsx diff --git a/online-store/src/main/webapp/app/index.tsx b/store/src/main/webapp/app/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/index.tsx rename to store/src/main/webapp/app/index.tsx diff --git a/online-store/src/main/webapp/app/modules/account/activate/activate.reducer.ts b/store/src/main/webapp/app/modules/account/activate/activate.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/modules/account/activate/activate.reducer.ts rename to store/src/main/webapp/app/modules/account/activate/activate.reducer.ts diff --git a/online-store/src/main/webapp/app/modules/account/activate/activate.tsx b/store/src/main/webapp/app/modules/account/activate/activate.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/account/activate/activate.tsx rename to store/src/main/webapp/app/modules/account/activate/activate.tsx diff --git a/online-store/src/main/webapp/app/modules/account/index.tsx b/store/src/main/webapp/app/modules/account/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/account/index.tsx rename to store/src/main/webapp/app/modules/account/index.tsx diff --git a/online-store/src/main/webapp/app/modules/account/password-reset/finish/password-reset-finish.tsx b/store/src/main/webapp/app/modules/account/password-reset/finish/password-reset-finish.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/account/password-reset/finish/password-reset-finish.tsx rename to store/src/main/webapp/app/modules/account/password-reset/finish/password-reset-finish.tsx diff --git a/online-store/src/main/webapp/app/modules/account/password-reset/init/password-reset-init.tsx b/store/src/main/webapp/app/modules/account/password-reset/init/password-reset-init.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/account/password-reset/init/password-reset-init.tsx rename to store/src/main/webapp/app/modules/account/password-reset/init/password-reset-init.tsx diff --git a/online-store/src/main/webapp/app/modules/account/password-reset/password-reset.reducer.ts b/store/src/main/webapp/app/modules/account/password-reset/password-reset.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/modules/account/password-reset/password-reset.reducer.ts rename to store/src/main/webapp/app/modules/account/password-reset/password-reset.reducer.ts diff --git a/online-store/src/main/webapp/app/modules/account/password/password.reducer.ts b/store/src/main/webapp/app/modules/account/password/password.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/modules/account/password/password.reducer.ts rename to store/src/main/webapp/app/modules/account/password/password.reducer.ts diff --git a/online-store/src/main/webapp/app/modules/account/password/password.tsx b/store/src/main/webapp/app/modules/account/password/password.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/account/password/password.tsx rename to store/src/main/webapp/app/modules/account/password/password.tsx diff --git a/online-store/src/main/webapp/app/modules/account/register/register.reducer.ts b/store/src/main/webapp/app/modules/account/register/register.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/modules/account/register/register.reducer.ts rename to store/src/main/webapp/app/modules/account/register/register.reducer.ts diff --git a/online-store/src/main/webapp/app/modules/account/register/register.tsx b/store/src/main/webapp/app/modules/account/register/register.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/account/register/register.tsx rename to store/src/main/webapp/app/modules/account/register/register.tsx diff --git a/online-store/src/main/webapp/app/modules/account/settings/settings.reducer.ts b/store/src/main/webapp/app/modules/account/settings/settings.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/modules/account/settings/settings.reducer.ts rename to store/src/main/webapp/app/modules/account/settings/settings.reducer.ts diff --git a/online-store/src/main/webapp/app/modules/account/settings/settings.tsx b/store/src/main/webapp/app/modules/account/settings/settings.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/account/settings/settings.tsx rename to store/src/main/webapp/app/modules/account/settings/settings.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/administration.reducer.ts b/store/src/main/webapp/app/modules/administration/administration.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/administration.reducer.ts rename to store/src/main/webapp/app/modules/administration/administration.reducer.ts diff --git a/online-store/src/main/webapp/app/modules/administration/audits/audits.tsx b/store/src/main/webapp/app/modules/administration/audits/audits.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/audits/audits.tsx rename to store/src/main/webapp/app/modules/administration/audits/audits.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/configuration/configuration.tsx b/store/src/main/webapp/app/modules/administration/configuration/configuration.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/configuration/configuration.tsx rename to store/src/main/webapp/app/modules/administration/configuration/configuration.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/docs/docs.tsx b/store/src/main/webapp/app/modules/administration/docs/docs.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/docs/docs.tsx rename to store/src/main/webapp/app/modules/administration/docs/docs.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/gateway/gateway.tsx b/store/src/main/webapp/app/modules/administration/gateway/gateway.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/gateway/gateway.tsx rename to store/src/main/webapp/app/modules/administration/gateway/gateway.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/health/health-modal.tsx b/store/src/main/webapp/app/modules/administration/health/health-modal.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/health/health-modal.tsx rename to store/src/main/webapp/app/modules/administration/health/health-modal.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/health/health.tsx b/store/src/main/webapp/app/modules/administration/health/health.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/health/health.tsx rename to store/src/main/webapp/app/modules/administration/health/health.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/index.tsx b/store/src/main/webapp/app/modules/administration/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/index.tsx rename to store/src/main/webapp/app/modules/administration/index.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/logs/logs.tsx b/store/src/main/webapp/app/modules/administration/logs/logs.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/logs/logs.tsx rename to store/src/main/webapp/app/modules/administration/logs/logs.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/metrics/metrics-modal.tsx b/store/src/main/webapp/app/modules/administration/metrics/metrics-modal.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/metrics/metrics-modal.tsx rename to store/src/main/webapp/app/modules/administration/metrics/metrics-modal.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/metrics/metrics.tsx b/store/src/main/webapp/app/modules/administration/metrics/metrics.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/metrics/metrics.tsx rename to store/src/main/webapp/app/modules/administration/metrics/metrics.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/metrics/thread-item.tsx b/store/src/main/webapp/app/modules/administration/metrics/thread-item.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/metrics/thread-item.tsx rename to store/src/main/webapp/app/modules/administration/metrics/thread-item.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/user-management/index.tsx b/store/src/main/webapp/app/modules/administration/user-management/index.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/user-management/index.tsx rename to store/src/main/webapp/app/modules/administration/user-management/index.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/user-management/user-management-delete-dialog.tsx b/store/src/main/webapp/app/modules/administration/user-management/user-management-delete-dialog.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/user-management/user-management-delete-dialog.tsx rename to store/src/main/webapp/app/modules/administration/user-management/user-management-delete-dialog.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/user-management/user-management-detail.tsx b/store/src/main/webapp/app/modules/administration/user-management/user-management-detail.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/user-management/user-management-detail.tsx rename to store/src/main/webapp/app/modules/administration/user-management/user-management-detail.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/user-management/user-management-update.tsx b/store/src/main/webapp/app/modules/administration/user-management/user-management-update.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/user-management/user-management-update.tsx rename to store/src/main/webapp/app/modules/administration/user-management/user-management-update.tsx diff --git a/online-store/src/main/webapp/app/modules/administration/user-management/user-management.reducer.ts b/store/src/main/webapp/app/modules/administration/user-management/user-management.reducer.ts similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/user-management/user-management.reducer.ts rename to store/src/main/webapp/app/modules/administration/user-management/user-management.reducer.ts diff --git a/online-store/src/main/webapp/app/modules/administration/user-management/user-management.tsx b/store/src/main/webapp/app/modules/administration/user-management/user-management.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/administration/user-management/user-management.tsx rename to store/src/main/webapp/app/modules/administration/user-management/user-management.tsx diff --git a/online-store/src/main/webapp/app/modules/home/home.scss b/store/src/main/webapp/app/modules/home/home.scss similarity index 100% rename from online-store/src/main/webapp/app/modules/home/home.scss rename to store/src/main/webapp/app/modules/home/home.scss diff --git a/online-store/src/main/webapp/app/modules/home/home.tsx b/store/src/main/webapp/app/modules/home/home.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/home/home.tsx rename to store/src/main/webapp/app/modules/home/home.tsx diff --git a/online-store/src/main/webapp/app/modules/login/login-modal.tsx b/store/src/main/webapp/app/modules/login/login-modal.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/login/login-modal.tsx rename to store/src/main/webapp/app/modules/login/login-modal.tsx diff --git a/online-store/src/main/webapp/app/modules/login/login.tsx b/store/src/main/webapp/app/modules/login/login.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/login/login.tsx rename to store/src/main/webapp/app/modules/login/login.tsx diff --git a/online-store/src/main/webapp/app/modules/login/logout.tsx b/store/src/main/webapp/app/modules/login/logout.tsx similarity index 100% rename from online-store/src/main/webapp/app/modules/login/logout.tsx rename to store/src/main/webapp/app/modules/login/logout.tsx diff --git a/online-store/src/main/webapp/app/routes.tsx b/store/src/main/webapp/app/routes.tsx similarity index 100% rename from online-store/src/main/webapp/app/routes.tsx rename to store/src/main/webapp/app/routes.tsx diff --git a/online-store/src/main/webapp/app/shared/auth/private-route.tsx b/store/src/main/webapp/app/shared/auth/private-route.tsx similarity index 100% rename from online-store/src/main/webapp/app/shared/auth/private-route.tsx rename to store/src/main/webapp/app/shared/auth/private-route.tsx diff --git a/online-store/src/main/webapp/app/shared/error/error-boundary-route.tsx b/store/src/main/webapp/app/shared/error/error-boundary-route.tsx similarity index 100% rename from online-store/src/main/webapp/app/shared/error/error-boundary-route.tsx rename to store/src/main/webapp/app/shared/error/error-boundary-route.tsx diff --git a/online-store/src/main/webapp/app/shared/error/error-boundary.tsx b/store/src/main/webapp/app/shared/error/error-boundary.tsx similarity index 100% rename from online-store/src/main/webapp/app/shared/error/error-boundary.tsx rename to store/src/main/webapp/app/shared/error/error-boundary.tsx diff --git a/online-store/src/main/webapp/app/shared/layout/footer/footer.scss b/store/src/main/webapp/app/shared/layout/footer/footer.scss similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/footer/footer.scss rename to store/src/main/webapp/app/shared/layout/footer/footer.scss diff --git a/online-store/src/main/webapp/app/shared/layout/footer/footer.tsx b/store/src/main/webapp/app/shared/layout/footer/footer.tsx similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/footer/footer.tsx rename to store/src/main/webapp/app/shared/layout/footer/footer.tsx diff --git a/online-store/src/main/webapp/app/shared/layout/header/header-components.tsx b/store/src/main/webapp/app/shared/layout/header/header-components.tsx similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/header/header-components.tsx rename to store/src/main/webapp/app/shared/layout/header/header-components.tsx diff --git a/online-store/src/main/webapp/app/shared/layout/header/header.scss b/store/src/main/webapp/app/shared/layout/header/header.scss similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/header/header.scss rename to store/src/main/webapp/app/shared/layout/header/header.scss diff --git a/online-store/src/main/webapp/app/shared/layout/header/header.tsx b/store/src/main/webapp/app/shared/layout/header/header.tsx similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/header/header.tsx rename to store/src/main/webapp/app/shared/layout/header/header.tsx diff --git a/online-store/src/main/webapp/app/shared/layout/header/menus/account.tsx b/store/src/main/webapp/app/shared/layout/header/menus/account.tsx similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/header/menus/account.tsx rename to store/src/main/webapp/app/shared/layout/header/menus/account.tsx diff --git a/online-store/src/main/webapp/app/shared/layout/header/menus/admin.tsx b/store/src/main/webapp/app/shared/layout/header/menus/admin.tsx similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/header/menus/admin.tsx rename to store/src/main/webapp/app/shared/layout/header/menus/admin.tsx diff --git a/online-store/src/main/webapp/app/shared/layout/header/menus/entities.tsx b/store/src/main/webapp/app/shared/layout/header/menus/entities.tsx similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/header/menus/entities.tsx rename to store/src/main/webapp/app/shared/layout/header/menus/entities.tsx diff --git a/online-store/src/main/webapp/app/shared/layout/header/menus/index.ts b/store/src/main/webapp/app/shared/layout/header/menus/index.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/header/menus/index.ts rename to store/src/main/webapp/app/shared/layout/header/menus/index.ts diff --git a/online-store/src/main/webapp/app/shared/layout/header/menus/locale.tsx b/store/src/main/webapp/app/shared/layout/header/menus/locale.tsx similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/header/menus/locale.tsx rename to store/src/main/webapp/app/shared/layout/header/menus/locale.tsx diff --git a/online-store/src/main/webapp/app/shared/layout/password/password-strength-bar.scss b/store/src/main/webapp/app/shared/layout/password/password-strength-bar.scss similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/password/password-strength-bar.scss rename to store/src/main/webapp/app/shared/layout/password/password-strength-bar.scss diff --git a/online-store/src/main/webapp/app/shared/layout/password/password-strength-bar.tsx b/store/src/main/webapp/app/shared/layout/password/password-strength-bar.tsx similarity index 100% rename from online-store/src/main/webapp/app/shared/layout/password/password-strength-bar.tsx rename to store/src/main/webapp/app/shared/layout/password/password-strength-bar.tsx diff --git a/online-store/src/main/webapp/app/shared/model/customer.model.ts b/store/src/main/webapp/app/shared/model/customer.model.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/model/customer.model.ts rename to store/src/main/webapp/app/shared/model/customer.model.ts diff --git a/online-store/src/main/webapp/app/shared/model/invoice/invoice.model.ts b/store/src/main/webapp/app/shared/model/invoice/invoice.model.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/model/invoice/invoice.model.ts rename to store/src/main/webapp/app/shared/model/invoice/invoice.model.ts diff --git a/online-store/src/main/webapp/app/shared/model/invoice/shipment.model.ts b/store/src/main/webapp/app/shared/model/invoice/shipment.model.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/model/invoice/shipment.model.ts rename to store/src/main/webapp/app/shared/model/invoice/shipment.model.ts diff --git a/online-store/src/main/webapp/app/shared/model/notification/notification.model.ts b/store/src/main/webapp/app/shared/model/notification/notification.model.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/model/notification/notification.model.ts rename to store/src/main/webapp/app/shared/model/notification/notification.model.ts diff --git a/online-store/src/main/webapp/app/shared/model/order-item.model.ts b/store/src/main/webapp/app/shared/model/order-item.model.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/model/order-item.model.ts rename to store/src/main/webapp/app/shared/model/order-item.model.ts diff --git a/online-store/src/main/webapp/app/shared/model/product-category.model.ts b/store/src/main/webapp/app/shared/model/product-category.model.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/model/product-category.model.ts rename to store/src/main/webapp/app/shared/model/product-category.model.ts diff --git a/online-store/src/main/webapp/app/shared/model/product-order.model.ts b/store/src/main/webapp/app/shared/model/product-order.model.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/model/product-order.model.ts rename to store/src/main/webapp/app/shared/model/product-order.model.ts diff --git a/online-store/src/main/webapp/app/shared/model/product.model.ts b/store/src/main/webapp/app/shared/model/product.model.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/model/product.model.ts rename to store/src/main/webapp/app/shared/model/product.model.ts diff --git a/online-store/src/main/webapp/app/shared/model/user.model.ts b/store/src/main/webapp/app/shared/model/user.model.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/model/user.model.ts rename to store/src/main/webapp/app/shared/model/user.model.ts diff --git a/online-store/src/main/webapp/app/shared/reducers/action-type.util.ts b/store/src/main/webapp/app/shared/reducers/action-type.util.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/reducers/action-type.util.ts rename to store/src/main/webapp/app/shared/reducers/action-type.util.ts diff --git a/online-store/src/main/webapp/app/shared/reducers/application-profile.ts b/store/src/main/webapp/app/shared/reducers/application-profile.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/reducers/application-profile.ts rename to store/src/main/webapp/app/shared/reducers/application-profile.ts diff --git a/online-store/src/main/webapp/app/shared/reducers/authentication.ts b/store/src/main/webapp/app/shared/reducers/authentication.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/reducers/authentication.ts rename to store/src/main/webapp/app/shared/reducers/authentication.ts diff --git a/online-store/src/main/webapp/app/shared/reducers/index.ts b/store/src/main/webapp/app/shared/reducers/index.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/reducers/index.ts rename to store/src/main/webapp/app/shared/reducers/index.ts diff --git a/online-store/src/main/webapp/app/shared/reducers/locale.ts b/store/src/main/webapp/app/shared/reducers/locale.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/reducers/locale.ts rename to store/src/main/webapp/app/shared/reducers/locale.ts diff --git a/online-store/src/main/webapp/app/shared/util/date-utils.ts b/store/src/main/webapp/app/shared/util/date-utils.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/util/date-utils.ts rename to store/src/main/webapp/app/shared/util/date-utils.ts diff --git a/online-store/src/main/webapp/app/shared/util/entity-utils.ts b/store/src/main/webapp/app/shared/util/entity-utils.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/util/entity-utils.ts rename to store/src/main/webapp/app/shared/util/entity-utils.ts diff --git a/online-store/src/main/webapp/app/shared/util/pagination.constants.ts b/store/src/main/webapp/app/shared/util/pagination.constants.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/util/pagination.constants.ts rename to store/src/main/webapp/app/shared/util/pagination.constants.ts diff --git a/online-store/src/main/webapp/app/shared/util/url-utils.ts b/store/src/main/webapp/app/shared/util/url-utils.ts similarity index 100% rename from online-store/src/main/webapp/app/shared/util/url-utils.ts rename to store/src/main/webapp/app/shared/util/url-utils.ts diff --git a/online-store/src/main/webapp/app/typings.d.ts b/store/src/main/webapp/app/typings.d.ts similarity index 100% rename from online-store/src/main/webapp/app/typings.d.ts rename to store/src/main/webapp/app/typings.d.ts diff --git a/online-store/src/main/webapp/favicon.ico b/store/src/main/webapp/favicon.ico similarity index 100% rename from online-store/src/main/webapp/favicon.ico rename to store/src/main/webapp/favicon.ico diff --git a/online-store/src/main/webapp/i18n/en/activate.json b/store/src/main/webapp/i18n/en/activate.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/activate.json rename to store/src/main/webapp/i18n/en/activate.json diff --git a/online-store/src/main/webapp/i18n/en/audits.json b/store/src/main/webapp/i18n/en/audits.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/audits.json rename to store/src/main/webapp/i18n/en/audits.json diff --git a/online-store/src/main/webapp/i18n/en/configuration.json b/store/src/main/webapp/i18n/en/configuration.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/configuration.json rename to store/src/main/webapp/i18n/en/configuration.json diff --git a/online-store/src/main/webapp/i18n/en/customer.json b/store/src/main/webapp/i18n/en/customer.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/customer.json rename to store/src/main/webapp/i18n/en/customer.json diff --git a/online-store/src/main/webapp/i18n/en/error.json b/store/src/main/webapp/i18n/en/error.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/error.json rename to store/src/main/webapp/i18n/en/error.json diff --git a/online-store/src/main/webapp/i18n/en/gateway.json b/store/src/main/webapp/i18n/en/gateway.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/gateway.json rename to store/src/main/webapp/i18n/en/gateway.json diff --git a/online-store/src/main/webapp/i18n/en/gender.json b/store/src/main/webapp/i18n/en/gender.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/gender.json rename to store/src/main/webapp/i18n/en/gender.json diff --git a/online-store/src/main/webapp/i18n/en/global.json b/store/src/main/webapp/i18n/en/global.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/global.json rename to store/src/main/webapp/i18n/en/global.json diff --git a/online-store/src/main/webapp/i18n/en/health.json b/store/src/main/webapp/i18n/en/health.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/health.json rename to store/src/main/webapp/i18n/en/health.json diff --git a/online-store/src/main/webapp/i18n/en/home.json b/store/src/main/webapp/i18n/en/home.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/home.json rename to store/src/main/webapp/i18n/en/home.json diff --git a/online-store/src/main/webapp/i18n/en/invoice-invoiceStatus.json b/store/src/main/webapp/i18n/en/invoice-invoiceStatus.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/invoice-invoiceStatus.json rename to store/src/main/webapp/i18n/en/invoice-invoiceStatus.json diff --git a/online-store/src/main/webapp/i18n/en/invoice-paymentMethod.json b/store/src/main/webapp/i18n/en/invoice-paymentMethod.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/invoice-paymentMethod.json rename to store/src/main/webapp/i18n/en/invoice-paymentMethod.json diff --git a/online-store/src/main/webapp/i18n/en/invoiceInvoice.json b/store/src/main/webapp/i18n/en/invoiceInvoice.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/invoiceInvoice.json rename to store/src/main/webapp/i18n/en/invoiceInvoice.json diff --git a/online-store/src/main/webapp/i18n/en/invoiceShipment.json b/store/src/main/webapp/i18n/en/invoiceShipment.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/invoiceShipment.json rename to store/src/main/webapp/i18n/en/invoiceShipment.json diff --git a/online-store/src/main/webapp/i18n/en/login.json b/store/src/main/webapp/i18n/en/login.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/login.json rename to store/src/main/webapp/i18n/en/login.json diff --git a/online-store/src/main/webapp/i18n/en/logs.json b/store/src/main/webapp/i18n/en/logs.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/logs.json rename to store/src/main/webapp/i18n/en/logs.json diff --git a/online-store/src/main/webapp/i18n/en/metrics.json b/store/src/main/webapp/i18n/en/metrics.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/metrics.json rename to store/src/main/webapp/i18n/en/metrics.json diff --git a/online-store/src/main/webapp/i18n/en/notification-notificationType.json b/store/src/main/webapp/i18n/en/notification-notificationType.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/notification-notificationType.json rename to store/src/main/webapp/i18n/en/notification-notificationType.json diff --git a/online-store/src/main/webapp/i18n/en/notificationNotification.json b/store/src/main/webapp/i18n/en/notificationNotification.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/notificationNotification.json rename to store/src/main/webapp/i18n/en/notificationNotification.json diff --git a/online-store/src/main/webapp/i18n/en/orderItem.json b/store/src/main/webapp/i18n/en/orderItem.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/orderItem.json rename to store/src/main/webapp/i18n/en/orderItem.json diff --git a/online-store/src/main/webapp/i18n/en/orderItemStatus.json b/store/src/main/webapp/i18n/en/orderItemStatus.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/orderItemStatus.json rename to store/src/main/webapp/i18n/en/orderItemStatus.json diff --git a/online-store/src/main/webapp/i18n/en/orderStatus.json b/store/src/main/webapp/i18n/en/orderStatus.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/orderStatus.json rename to store/src/main/webapp/i18n/en/orderStatus.json diff --git a/online-store/src/main/webapp/i18n/en/password.json b/store/src/main/webapp/i18n/en/password.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/password.json rename to store/src/main/webapp/i18n/en/password.json diff --git a/online-store/src/main/webapp/i18n/en/product.json b/store/src/main/webapp/i18n/en/product.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/product.json rename to store/src/main/webapp/i18n/en/product.json diff --git a/online-store/src/main/webapp/i18n/en/productCategory.json b/store/src/main/webapp/i18n/en/productCategory.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/productCategory.json rename to store/src/main/webapp/i18n/en/productCategory.json diff --git a/online-store/src/main/webapp/i18n/en/productOrder.json b/store/src/main/webapp/i18n/en/productOrder.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/productOrder.json rename to store/src/main/webapp/i18n/en/productOrder.json diff --git a/online-store/src/main/webapp/i18n/en/register.json b/store/src/main/webapp/i18n/en/register.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/register.json rename to store/src/main/webapp/i18n/en/register.json diff --git a/online-store/src/main/webapp/i18n/en/reset.json b/store/src/main/webapp/i18n/en/reset.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/reset.json rename to store/src/main/webapp/i18n/en/reset.json diff --git a/online-store/src/main/webapp/i18n/en/sessions.json b/store/src/main/webapp/i18n/en/sessions.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/sessions.json rename to store/src/main/webapp/i18n/en/sessions.json diff --git a/online-store/src/main/webapp/i18n/en/settings.json b/store/src/main/webapp/i18n/en/settings.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/settings.json rename to store/src/main/webapp/i18n/en/settings.json diff --git a/online-store/src/main/webapp/i18n/en/size.json b/store/src/main/webapp/i18n/en/size.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/size.json rename to store/src/main/webapp/i18n/en/size.json diff --git a/online-store/src/main/webapp/i18n/en/user-management.json b/store/src/main/webapp/i18n/en/user-management.json similarity index 100% rename from online-store/src/main/webapp/i18n/en/user-management.json rename to store/src/main/webapp/i18n/en/user-management.json diff --git a/online-store/src/main/webapp/i18n/nl/activate.json b/store/src/main/webapp/i18n/nl/activate.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/activate.json rename to store/src/main/webapp/i18n/nl/activate.json diff --git a/online-store/src/main/webapp/i18n/nl/audits.json b/store/src/main/webapp/i18n/nl/audits.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/audits.json rename to store/src/main/webapp/i18n/nl/audits.json diff --git a/online-store/src/main/webapp/i18n/nl/configuration.json b/store/src/main/webapp/i18n/nl/configuration.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/configuration.json rename to store/src/main/webapp/i18n/nl/configuration.json diff --git a/online-store/src/main/webapp/i18n/nl/customer.json b/store/src/main/webapp/i18n/nl/customer.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/customer.json rename to store/src/main/webapp/i18n/nl/customer.json diff --git a/online-store/src/main/webapp/i18n/nl/error.json b/store/src/main/webapp/i18n/nl/error.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/error.json rename to store/src/main/webapp/i18n/nl/error.json diff --git a/online-store/src/main/webapp/i18n/nl/gateway.json b/store/src/main/webapp/i18n/nl/gateway.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/gateway.json rename to store/src/main/webapp/i18n/nl/gateway.json diff --git a/online-store/src/main/webapp/i18n/nl/gender.json b/store/src/main/webapp/i18n/nl/gender.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/gender.json rename to store/src/main/webapp/i18n/nl/gender.json diff --git a/online-store/src/main/webapp/i18n/nl/global.json b/store/src/main/webapp/i18n/nl/global.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/global.json rename to store/src/main/webapp/i18n/nl/global.json diff --git a/online-store/src/main/webapp/i18n/nl/health.json b/store/src/main/webapp/i18n/nl/health.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/health.json rename to store/src/main/webapp/i18n/nl/health.json diff --git a/online-store/src/main/webapp/i18n/nl/home.json b/store/src/main/webapp/i18n/nl/home.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/home.json rename to store/src/main/webapp/i18n/nl/home.json diff --git a/online-store/src/main/webapp/i18n/nl/invoice-invoiceStatus.json b/store/src/main/webapp/i18n/nl/invoice-invoiceStatus.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/invoice-invoiceStatus.json rename to store/src/main/webapp/i18n/nl/invoice-invoiceStatus.json diff --git a/online-store/src/main/webapp/i18n/nl/invoice-paymentMethod.json b/store/src/main/webapp/i18n/nl/invoice-paymentMethod.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/invoice-paymentMethod.json rename to store/src/main/webapp/i18n/nl/invoice-paymentMethod.json diff --git a/online-store/src/main/webapp/i18n/nl/invoiceInvoice.json b/store/src/main/webapp/i18n/nl/invoiceInvoice.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/invoiceInvoice.json rename to store/src/main/webapp/i18n/nl/invoiceInvoice.json diff --git a/online-store/src/main/webapp/i18n/nl/invoiceShipment.json b/store/src/main/webapp/i18n/nl/invoiceShipment.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/invoiceShipment.json rename to store/src/main/webapp/i18n/nl/invoiceShipment.json diff --git a/online-store/src/main/webapp/i18n/nl/login.json b/store/src/main/webapp/i18n/nl/login.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/login.json rename to store/src/main/webapp/i18n/nl/login.json diff --git a/online-store/src/main/webapp/i18n/nl/logs.json b/store/src/main/webapp/i18n/nl/logs.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/logs.json rename to store/src/main/webapp/i18n/nl/logs.json diff --git a/online-store/src/main/webapp/i18n/nl/metrics.json b/store/src/main/webapp/i18n/nl/metrics.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/metrics.json rename to store/src/main/webapp/i18n/nl/metrics.json diff --git a/online-store/src/main/webapp/i18n/nl/notification-notificationType.json b/store/src/main/webapp/i18n/nl/notification-notificationType.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/notification-notificationType.json rename to store/src/main/webapp/i18n/nl/notification-notificationType.json diff --git a/online-store/src/main/webapp/i18n/nl/notificationNotification.json b/store/src/main/webapp/i18n/nl/notificationNotification.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/notificationNotification.json rename to store/src/main/webapp/i18n/nl/notificationNotification.json diff --git a/online-store/src/main/webapp/i18n/nl/orderItem.json b/store/src/main/webapp/i18n/nl/orderItem.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/orderItem.json rename to store/src/main/webapp/i18n/nl/orderItem.json diff --git a/online-store/src/main/webapp/i18n/nl/orderItemStatus.json b/store/src/main/webapp/i18n/nl/orderItemStatus.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/orderItemStatus.json rename to store/src/main/webapp/i18n/nl/orderItemStatus.json diff --git a/online-store/src/main/webapp/i18n/nl/orderStatus.json b/store/src/main/webapp/i18n/nl/orderStatus.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/orderStatus.json rename to store/src/main/webapp/i18n/nl/orderStatus.json diff --git a/online-store/src/main/webapp/i18n/nl/password.json b/store/src/main/webapp/i18n/nl/password.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/password.json rename to store/src/main/webapp/i18n/nl/password.json diff --git a/online-store/src/main/webapp/i18n/nl/product.json b/store/src/main/webapp/i18n/nl/product.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/product.json rename to store/src/main/webapp/i18n/nl/product.json diff --git a/online-store/src/main/webapp/i18n/nl/productCategory.json b/store/src/main/webapp/i18n/nl/productCategory.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/productCategory.json rename to store/src/main/webapp/i18n/nl/productCategory.json diff --git a/online-store/src/main/webapp/i18n/nl/productOrder.json b/store/src/main/webapp/i18n/nl/productOrder.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/productOrder.json rename to store/src/main/webapp/i18n/nl/productOrder.json diff --git a/online-store/src/main/webapp/i18n/nl/register.json b/store/src/main/webapp/i18n/nl/register.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/register.json rename to store/src/main/webapp/i18n/nl/register.json diff --git a/online-store/src/main/webapp/i18n/nl/reset.json b/store/src/main/webapp/i18n/nl/reset.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/reset.json rename to store/src/main/webapp/i18n/nl/reset.json diff --git a/online-store/src/main/webapp/i18n/nl/sessions.json b/store/src/main/webapp/i18n/nl/sessions.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/sessions.json rename to store/src/main/webapp/i18n/nl/sessions.json diff --git a/online-store/src/main/webapp/i18n/nl/settings.json b/store/src/main/webapp/i18n/nl/settings.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/settings.json rename to store/src/main/webapp/i18n/nl/settings.json diff --git a/online-store/src/main/webapp/i18n/nl/size.json b/store/src/main/webapp/i18n/nl/size.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/size.json rename to store/src/main/webapp/i18n/nl/size.json diff --git a/online-store/src/main/webapp/i18n/nl/user-management.json b/store/src/main/webapp/i18n/nl/user-management.json similarity index 100% rename from online-store/src/main/webapp/i18n/nl/user-management.json rename to store/src/main/webapp/i18n/nl/user-management.json diff --git a/online-store/src/main/webapp/index.html b/store/src/main/webapp/index.html similarity index 100% rename from online-store/src/main/webapp/index.html rename to store/src/main/webapp/index.html diff --git a/online-store/src/main/webapp/manifest.webapp b/store/src/main/webapp/manifest.webapp similarity index 100% rename from online-store/src/main/webapp/manifest.webapp rename to store/src/main/webapp/manifest.webapp diff --git a/online-store/src/main/webapp/robots.txt b/store/src/main/webapp/robots.txt similarity index 100% rename from online-store/src/main/webapp/robots.txt rename to store/src/main/webapp/robots.txt diff --git a/online-store/src/main/webapp/static/images/hipster.png b/store/src/main/webapp/static/images/hipster.png similarity index 100% rename from online-store/src/main/webapp/static/images/hipster.png rename to store/src/main/webapp/static/images/hipster.png diff --git a/online-store/src/main/webapp/static/images/hipster192.png b/store/src/main/webapp/static/images/hipster192.png similarity index 100% rename from online-store/src/main/webapp/static/images/hipster192.png rename to store/src/main/webapp/static/images/hipster192.png diff --git a/online-store/src/main/webapp/static/images/hipster256.png b/store/src/main/webapp/static/images/hipster256.png similarity index 100% rename from online-store/src/main/webapp/static/images/hipster256.png rename to store/src/main/webapp/static/images/hipster256.png diff --git a/online-store/src/main/webapp/static/images/hipster2x.png b/store/src/main/webapp/static/images/hipster2x.png similarity index 100% rename from online-store/src/main/webapp/static/images/hipster2x.png rename to store/src/main/webapp/static/images/hipster2x.png diff --git a/online-store/src/main/webapp/static/images/hipster384.png b/store/src/main/webapp/static/images/hipster384.png similarity index 100% rename from online-store/src/main/webapp/static/images/hipster384.png rename to store/src/main/webapp/static/images/hipster384.png diff --git a/online-store/src/main/webapp/static/images/hipster512.png b/store/src/main/webapp/static/images/hipster512.png similarity index 100% rename from online-store/src/main/webapp/static/images/hipster512.png rename to store/src/main/webapp/static/images/hipster512.png diff --git a/online-store/src/main/webapp/static/images/logo-jhipster-react.svg b/store/src/main/webapp/static/images/logo-jhipster-react.svg similarity index 100% rename from online-store/src/main/webapp/static/images/logo-jhipster-react.svg rename to store/src/main/webapp/static/images/logo-jhipster-react.svg diff --git a/online-store/src/main/webapp/static/images/logo-jhipster.png b/store/src/main/webapp/static/images/logo-jhipster.png similarity index 100% rename from online-store/src/main/webapp/static/images/logo-jhipster.png rename to store/src/main/webapp/static/images/logo-jhipster.png diff --git a/online-store/src/main/webapp/swagger-ui/dist/images/throbber.gif b/store/src/main/webapp/swagger-ui/dist/images/throbber.gif similarity index 100% rename from online-store/src/main/webapp/swagger-ui/dist/images/throbber.gif rename to store/src/main/webapp/swagger-ui/dist/images/throbber.gif diff --git a/online-store/src/main/webapp/swagger-ui/index.html b/store/src/main/webapp/swagger-ui/index.html similarity index 100% rename from online-store/src/main/webapp/swagger-ui/index.html rename to store/src/main/webapp/swagger-ui/index.html diff --git a/online-store/src/test/java/com/xebialabs/store/config/WebConfigurerTest.java b/store/src/test/java/com/xebialabs/store/config/WebConfigurerTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/config/WebConfigurerTest.java rename to store/src/test/java/com/xebialabs/store/config/WebConfigurerTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/config/WebConfigurerTestController.java b/store/src/test/java/com/xebialabs/store/config/WebConfigurerTestController.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/config/WebConfigurerTestController.java rename to store/src/test/java/com/xebialabs/store/config/WebConfigurerTestController.java diff --git a/online-store/src/test/java/com/xebialabs/store/gateway/responserewriting/SwaggerBasePathRewritingFilterTest.java b/store/src/test/java/com/xebialabs/store/gateway/responserewriting/SwaggerBasePathRewritingFilterTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/gateway/responserewriting/SwaggerBasePathRewritingFilterTest.java rename to store/src/test/java/com/xebialabs/store/gateway/responserewriting/SwaggerBasePathRewritingFilterTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/repository/CustomAuditEventRepositoryIntTest.java b/store/src/test/java/com/xebialabs/store/repository/CustomAuditEventRepositoryIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/repository/CustomAuditEventRepositoryIntTest.java rename to store/src/test/java/com/xebialabs/store/repository/CustomAuditEventRepositoryIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/security/DomainUserDetailsServiceIntTest.java b/store/src/test/java/com/xebialabs/store/security/DomainUserDetailsServiceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/security/DomainUserDetailsServiceIntTest.java rename to store/src/test/java/com/xebialabs/store/security/DomainUserDetailsServiceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/security/SecurityUtilsUnitTest.java b/store/src/test/java/com/xebialabs/store/security/SecurityUtilsUnitTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/security/SecurityUtilsUnitTest.java rename to store/src/test/java/com/xebialabs/store/security/SecurityUtilsUnitTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/security/jwt/JWTFilterTest.java b/store/src/test/java/com/xebialabs/store/security/jwt/JWTFilterTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/security/jwt/JWTFilterTest.java rename to store/src/test/java/com/xebialabs/store/security/jwt/JWTFilterTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/security/jwt/TokenProviderTest.java b/store/src/test/java/com/xebialabs/store/security/jwt/TokenProviderTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/security/jwt/TokenProviderTest.java rename to store/src/test/java/com/xebialabs/store/security/jwt/TokenProviderTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/service/MailServiceIntTest.java b/store/src/test/java/com/xebialabs/store/service/MailServiceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/service/MailServiceIntTest.java rename to store/src/test/java/com/xebialabs/store/service/MailServiceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/service/UserServiceIntTest.java b/store/src/test/java/com/xebialabs/store/service/UserServiceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/service/UserServiceIntTest.java rename to store/src/test/java/com/xebialabs/store/service/UserServiceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/AccountResourceIntTest.java b/store/src/test/java/com/xebialabs/store/web/rest/AccountResourceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/AccountResourceIntTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/AccountResourceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/AuditResourceIntTest.java b/store/src/test/java/com/xebialabs/store/web/rest/AuditResourceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/AuditResourceIntTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/AuditResourceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/CustomerResourceIntTest.java b/store/src/test/java/com/xebialabs/store/web/rest/CustomerResourceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/CustomerResourceIntTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/CustomerResourceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/LogsResourceIntTest.java b/store/src/test/java/com/xebialabs/store/web/rest/LogsResourceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/LogsResourceIntTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/LogsResourceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/OrderItemResourceIntTest.java b/store/src/test/java/com/xebialabs/store/web/rest/OrderItemResourceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/OrderItemResourceIntTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/OrderItemResourceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/ProductCategoryResourceIntTest.java b/store/src/test/java/com/xebialabs/store/web/rest/ProductCategoryResourceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/ProductCategoryResourceIntTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/ProductCategoryResourceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/ProductOrderResourceIntTest.java b/store/src/test/java/com/xebialabs/store/web/rest/ProductOrderResourceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/ProductOrderResourceIntTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/ProductOrderResourceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/ProductResourceIntTest.java b/store/src/test/java/com/xebialabs/store/web/rest/ProductResourceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/ProductResourceIntTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/ProductResourceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/TestUtil.java b/store/src/test/java/com/xebialabs/store/web/rest/TestUtil.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/TestUtil.java rename to store/src/test/java/com/xebialabs/store/web/rest/TestUtil.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/UserJWTControllerIntTest.java b/store/src/test/java/com/xebialabs/store/web/rest/UserJWTControllerIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/UserJWTControllerIntTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/UserJWTControllerIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/UserResourceIntTest.java b/store/src/test/java/com/xebialabs/store/web/rest/UserResourceIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/UserResourceIntTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/UserResourceIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/errors/ExceptionTranslatorIntTest.java b/store/src/test/java/com/xebialabs/store/web/rest/errors/ExceptionTranslatorIntTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/errors/ExceptionTranslatorIntTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/errors/ExceptionTranslatorIntTest.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/errors/ExceptionTranslatorTestController.java b/store/src/test/java/com/xebialabs/store/web/rest/errors/ExceptionTranslatorTestController.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/errors/ExceptionTranslatorTestController.java rename to store/src/test/java/com/xebialabs/store/web/rest/errors/ExceptionTranslatorTestController.java diff --git a/online-store/src/test/java/com/xebialabs/store/web/rest/util/PaginationUtilUnitTest.java b/store/src/test/java/com/xebialabs/store/web/rest/util/PaginationUtilUnitTest.java similarity index 100% rename from online-store/src/test/java/com/xebialabs/store/web/rest/util/PaginationUtilUnitTest.java rename to store/src/test/java/com/xebialabs/store/web/rest/util/PaginationUtilUnitTest.java diff --git a/online-store/src/test/javascript/e2e/entities/customer/customer-update.page-object.ts b/store/src/test/javascript/e2e/entities/customer/customer-update.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/customer/customer-update.page-object.ts rename to store/src/test/javascript/e2e/entities/customer/customer-update.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/customer/customer.page-object.ts b/store/src/test/javascript/e2e/entities/customer/customer.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/customer/customer.page-object.ts rename to store/src/test/javascript/e2e/entities/customer/customer.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/customer/customer.spec.ts b/store/src/test/javascript/e2e/entities/customer/customer.spec.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/customer/customer.spec.ts rename to store/src/test/javascript/e2e/entities/customer/customer.spec.ts diff --git a/online-store/src/test/javascript/e2e/entities/invoice/invoice/invoice-update.page-object.ts b/store/src/test/javascript/e2e/entities/invoice/invoice/invoice-update.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/invoice/invoice/invoice-update.page-object.ts rename to store/src/test/javascript/e2e/entities/invoice/invoice/invoice-update.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/invoice/invoice/invoice.page-object.ts b/store/src/test/javascript/e2e/entities/invoice/invoice/invoice.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/invoice/invoice/invoice.page-object.ts rename to store/src/test/javascript/e2e/entities/invoice/invoice/invoice.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/invoice/invoice/invoice.spec.ts b/store/src/test/javascript/e2e/entities/invoice/invoice/invoice.spec.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/invoice/invoice/invoice.spec.ts rename to store/src/test/javascript/e2e/entities/invoice/invoice/invoice.spec.ts diff --git a/online-store/src/test/javascript/e2e/entities/invoice/shipment/shipment-update.page-object.ts b/store/src/test/javascript/e2e/entities/invoice/shipment/shipment-update.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/invoice/shipment/shipment-update.page-object.ts rename to store/src/test/javascript/e2e/entities/invoice/shipment/shipment-update.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/invoice/shipment/shipment.page-object.ts b/store/src/test/javascript/e2e/entities/invoice/shipment/shipment.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/invoice/shipment/shipment.page-object.ts rename to store/src/test/javascript/e2e/entities/invoice/shipment/shipment.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/invoice/shipment/shipment.spec.ts b/store/src/test/javascript/e2e/entities/invoice/shipment/shipment.spec.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/invoice/shipment/shipment.spec.ts rename to store/src/test/javascript/e2e/entities/invoice/shipment/shipment.spec.ts diff --git a/online-store/src/test/javascript/e2e/entities/notification/notification/notification-update.page-object.ts b/store/src/test/javascript/e2e/entities/notification/notification/notification-update.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/notification/notification/notification-update.page-object.ts rename to store/src/test/javascript/e2e/entities/notification/notification/notification-update.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/notification/notification/notification.page-object.ts b/store/src/test/javascript/e2e/entities/notification/notification/notification.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/notification/notification/notification.page-object.ts rename to store/src/test/javascript/e2e/entities/notification/notification/notification.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/notification/notification/notification.spec.ts b/store/src/test/javascript/e2e/entities/notification/notification/notification.spec.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/notification/notification/notification.spec.ts rename to store/src/test/javascript/e2e/entities/notification/notification/notification.spec.ts diff --git a/online-store/src/test/javascript/e2e/entities/order-item/order-item-update.page-object.ts b/store/src/test/javascript/e2e/entities/order-item/order-item-update.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/order-item/order-item-update.page-object.ts rename to store/src/test/javascript/e2e/entities/order-item/order-item-update.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/order-item/order-item.page-object.ts b/store/src/test/javascript/e2e/entities/order-item/order-item.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/order-item/order-item.page-object.ts rename to store/src/test/javascript/e2e/entities/order-item/order-item.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/order-item/order-item.spec.ts b/store/src/test/javascript/e2e/entities/order-item/order-item.spec.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/order-item/order-item.spec.ts rename to store/src/test/javascript/e2e/entities/order-item/order-item.spec.ts diff --git a/online-store/src/test/javascript/e2e/entities/product-category/product-category-update.page-object.ts b/store/src/test/javascript/e2e/entities/product-category/product-category-update.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/product-category/product-category-update.page-object.ts rename to store/src/test/javascript/e2e/entities/product-category/product-category-update.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/product-category/product-category.page-object.ts b/store/src/test/javascript/e2e/entities/product-category/product-category.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/product-category/product-category.page-object.ts rename to store/src/test/javascript/e2e/entities/product-category/product-category.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/product-category/product-category.spec.ts b/store/src/test/javascript/e2e/entities/product-category/product-category.spec.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/product-category/product-category.spec.ts rename to store/src/test/javascript/e2e/entities/product-category/product-category.spec.ts diff --git a/online-store/src/test/javascript/e2e/entities/product-order/product-order-update.page-object.ts b/store/src/test/javascript/e2e/entities/product-order/product-order-update.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/product-order/product-order-update.page-object.ts rename to store/src/test/javascript/e2e/entities/product-order/product-order-update.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/product-order/product-order.page-object.ts b/store/src/test/javascript/e2e/entities/product-order/product-order.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/product-order/product-order.page-object.ts rename to store/src/test/javascript/e2e/entities/product-order/product-order.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/product-order/product-order.spec.ts b/store/src/test/javascript/e2e/entities/product-order/product-order.spec.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/product-order/product-order.spec.ts rename to store/src/test/javascript/e2e/entities/product-order/product-order.spec.ts diff --git a/online-store/src/test/javascript/e2e/entities/product/product-update.page-object.ts b/store/src/test/javascript/e2e/entities/product/product-update.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/product/product-update.page-object.ts rename to store/src/test/javascript/e2e/entities/product/product-update.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/product/product.page-object.ts b/store/src/test/javascript/e2e/entities/product/product.page-object.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/product/product.page-object.ts rename to store/src/test/javascript/e2e/entities/product/product.page-object.ts diff --git a/online-store/src/test/javascript/e2e/entities/product/product.spec.ts b/store/src/test/javascript/e2e/entities/product/product.spec.ts similarity index 100% rename from online-store/src/test/javascript/e2e/entities/product/product.spec.ts rename to store/src/test/javascript/e2e/entities/product/product.spec.ts diff --git a/online-store/src/test/javascript/e2e/modules/account/account.spec.ts b/store/src/test/javascript/e2e/modules/account/account.spec.ts similarity index 100% rename from online-store/src/test/javascript/e2e/modules/account/account.spec.ts rename to store/src/test/javascript/e2e/modules/account/account.spec.ts diff --git a/online-store/src/test/javascript/e2e/modules/administration/administration.spec.ts b/store/src/test/javascript/e2e/modules/administration/administration.spec.ts similarity index 100% rename from online-store/src/test/javascript/e2e/modules/administration/administration.spec.ts rename to store/src/test/javascript/e2e/modules/administration/administration.spec.ts diff --git a/online-store/src/test/javascript/e2e/page-objects/base-component.ts b/store/src/test/javascript/e2e/page-objects/base-component.ts similarity index 100% rename from online-store/src/test/javascript/e2e/page-objects/base-component.ts rename to store/src/test/javascript/e2e/page-objects/base-component.ts diff --git a/online-store/src/test/javascript/e2e/page-objects/navbar-page.ts b/store/src/test/javascript/e2e/page-objects/navbar-page.ts similarity index 100% rename from online-store/src/test/javascript/e2e/page-objects/navbar-page.ts rename to store/src/test/javascript/e2e/page-objects/navbar-page.ts diff --git a/online-store/src/test/javascript/e2e/page-objects/password-page.ts b/store/src/test/javascript/e2e/page-objects/password-page.ts similarity index 100% rename from online-store/src/test/javascript/e2e/page-objects/password-page.ts rename to store/src/test/javascript/e2e/page-objects/password-page.ts diff --git a/online-store/src/test/javascript/e2e/page-objects/register-page.ts b/store/src/test/javascript/e2e/page-objects/register-page.ts similarity index 100% rename from online-store/src/test/javascript/e2e/page-objects/register-page.ts rename to store/src/test/javascript/e2e/page-objects/register-page.ts diff --git a/online-store/src/test/javascript/e2e/page-objects/settings-page.ts b/store/src/test/javascript/e2e/page-objects/settings-page.ts similarity index 100% rename from online-store/src/test/javascript/e2e/page-objects/settings-page.ts rename to store/src/test/javascript/e2e/page-objects/settings-page.ts diff --git a/online-store/src/test/javascript/e2e/page-objects/signin-page.ts b/store/src/test/javascript/e2e/page-objects/signin-page.ts similarity index 100% rename from online-store/src/test/javascript/e2e/page-objects/signin-page.ts rename to store/src/test/javascript/e2e/page-objects/signin-page.ts diff --git a/online-store/src/test/javascript/e2e/util/utils.ts b/store/src/test/javascript/e2e/util/utils.ts similarity index 100% rename from online-store/src/test/javascript/e2e/util/utils.ts rename to store/src/test/javascript/e2e/util/utils.ts diff --git a/online-store/src/test/javascript/jest.conf.js b/store/src/test/javascript/jest.conf.js similarity index 100% rename from online-store/src/test/javascript/jest.conf.js rename to store/src/test/javascript/jest.conf.js diff --git a/online-store/src/test/javascript/protractor.conf.js b/store/src/test/javascript/protractor.conf.js similarity index 100% rename from online-store/src/test/javascript/protractor.conf.js rename to store/src/test/javascript/protractor.conf.js diff --git a/online-store/src/test/javascript/spec/app/config/axios-interceptor.spec.ts b/store/src/test/javascript/spec/app/config/axios-interceptor.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/config/axios-interceptor.spec.ts rename to store/src/test/javascript/spec/app/config/axios-interceptor.spec.ts diff --git a/online-store/src/test/javascript/spec/app/config/notification-middleware.spec.ts b/store/src/test/javascript/spec/app/config/notification-middleware.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/config/notification-middleware.spec.ts rename to store/src/test/javascript/spec/app/config/notification-middleware.spec.ts diff --git a/online-store/src/test/javascript/spec/app/entities/customer/customer-reducer.spec.ts b/store/src/test/javascript/spec/app/entities/customer/customer-reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/entities/customer/customer-reducer.spec.ts rename to store/src/test/javascript/spec/app/entities/customer/customer-reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/entities/invoice/invoice/invoice-reducer.spec.ts b/store/src/test/javascript/spec/app/entities/invoice/invoice/invoice-reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/entities/invoice/invoice/invoice-reducer.spec.ts rename to store/src/test/javascript/spec/app/entities/invoice/invoice/invoice-reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/entities/invoice/shipment/shipment-reducer.spec.ts b/store/src/test/javascript/spec/app/entities/invoice/shipment/shipment-reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/entities/invoice/shipment/shipment-reducer.spec.ts rename to store/src/test/javascript/spec/app/entities/invoice/shipment/shipment-reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/entities/notification/notification/notification-reducer.spec.ts b/store/src/test/javascript/spec/app/entities/notification/notification/notification-reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/entities/notification/notification/notification-reducer.spec.ts rename to store/src/test/javascript/spec/app/entities/notification/notification/notification-reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/entities/order-item/order-item-reducer.spec.ts b/store/src/test/javascript/spec/app/entities/order-item/order-item-reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/entities/order-item/order-item-reducer.spec.ts rename to store/src/test/javascript/spec/app/entities/order-item/order-item-reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/entities/product-category/product-category-reducer.spec.ts b/store/src/test/javascript/spec/app/entities/product-category/product-category-reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/entities/product-category/product-category-reducer.spec.ts rename to store/src/test/javascript/spec/app/entities/product-category/product-category-reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/entities/product-order/product-order-reducer.spec.ts b/store/src/test/javascript/spec/app/entities/product-order/product-order-reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/entities/product-order/product-order-reducer.spec.ts rename to store/src/test/javascript/spec/app/entities/product-order/product-order-reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/entities/product/product-reducer.spec.ts b/store/src/test/javascript/spec/app/entities/product/product-reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/entities/product/product-reducer.spec.ts rename to store/src/test/javascript/spec/app/entities/product/product-reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/modules/account/activate/activate.reducer.spec.ts b/store/src/test/javascript/spec/app/modules/account/activate/activate.reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/modules/account/activate/activate.reducer.spec.ts rename to store/src/test/javascript/spec/app/modules/account/activate/activate.reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/modules/account/password/password.reducer.spec.ts b/store/src/test/javascript/spec/app/modules/account/password/password.reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/modules/account/password/password.reducer.spec.ts rename to store/src/test/javascript/spec/app/modules/account/password/password.reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/modules/account/register/register.reducer.spec.ts b/store/src/test/javascript/spec/app/modules/account/register/register.reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/modules/account/register/register.reducer.spec.ts rename to store/src/test/javascript/spec/app/modules/account/register/register.reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/modules/account/settings/settings.reducer.spec.ts b/store/src/test/javascript/spec/app/modules/account/settings/settings.reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/modules/account/settings/settings.reducer.spec.ts rename to store/src/test/javascript/spec/app/modules/account/settings/settings.reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/modules/administration/administration.reducer.spec.ts b/store/src/test/javascript/spec/app/modules/administration/administration.reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/modules/administration/administration.reducer.spec.ts rename to store/src/test/javascript/spec/app/modules/administration/administration.reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/modules/administration/user-management/user-management.reducer.spec.ts b/store/src/test/javascript/spec/app/modules/administration/user-management/user-management.reducer.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/modules/administration/user-management/user-management.reducer.spec.ts rename to store/src/test/javascript/spec/app/modules/administration/user-management/user-management.reducer.spec.ts diff --git a/online-store/src/test/javascript/spec/app/shared/auth/private-route.spec.tsx b/store/src/test/javascript/spec/app/shared/auth/private-route.spec.tsx similarity index 100% rename from online-store/src/test/javascript/spec/app/shared/auth/private-route.spec.tsx rename to store/src/test/javascript/spec/app/shared/auth/private-route.spec.tsx diff --git a/online-store/src/test/javascript/spec/app/shared/error/error-boundary-route.spec.tsx b/store/src/test/javascript/spec/app/shared/error/error-boundary-route.spec.tsx similarity index 100% rename from online-store/src/test/javascript/spec/app/shared/error/error-boundary-route.spec.tsx rename to store/src/test/javascript/spec/app/shared/error/error-boundary-route.spec.tsx diff --git a/online-store/src/test/javascript/spec/app/shared/error/error-boundary.spec.tsx b/store/src/test/javascript/spec/app/shared/error/error-boundary.spec.tsx similarity index 100% rename from online-store/src/test/javascript/spec/app/shared/error/error-boundary.spec.tsx rename to store/src/test/javascript/spec/app/shared/error/error-boundary.spec.tsx diff --git a/online-store/src/test/javascript/spec/app/shared/layout/header/header.spec.tsx b/store/src/test/javascript/spec/app/shared/layout/header/header.spec.tsx similarity index 100% rename from online-store/src/test/javascript/spec/app/shared/layout/header/header.spec.tsx rename to store/src/test/javascript/spec/app/shared/layout/header/header.spec.tsx diff --git a/online-store/src/test/javascript/spec/app/shared/layout/header/menus/account.spec.tsx b/store/src/test/javascript/spec/app/shared/layout/header/menus/account.spec.tsx similarity index 100% rename from online-store/src/test/javascript/spec/app/shared/layout/header/menus/account.spec.tsx rename to store/src/test/javascript/spec/app/shared/layout/header/menus/account.spec.tsx diff --git a/online-store/src/test/javascript/spec/app/shared/reducers/application-profile.spec.ts b/store/src/test/javascript/spec/app/shared/reducers/application-profile.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/shared/reducers/application-profile.spec.ts rename to store/src/test/javascript/spec/app/shared/reducers/application-profile.spec.ts diff --git a/online-store/src/test/javascript/spec/app/shared/reducers/authentication.spec.ts b/store/src/test/javascript/spec/app/shared/reducers/authentication.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/shared/reducers/authentication.spec.ts rename to store/src/test/javascript/spec/app/shared/reducers/authentication.spec.ts diff --git a/online-store/src/test/javascript/spec/app/shared/reducers/locale.spec.ts b/store/src/test/javascript/spec/app/shared/reducers/locale.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/shared/reducers/locale.spec.ts rename to store/src/test/javascript/spec/app/shared/reducers/locale.spec.ts diff --git a/online-store/src/test/javascript/spec/app/shared/util/entity-utils.spec.ts b/store/src/test/javascript/spec/app/shared/util/entity-utils.spec.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/shared/util/entity-utils.spec.ts rename to store/src/test/javascript/spec/app/shared/util/entity-utils.spec.ts diff --git a/online-store/src/test/javascript/spec/app/utils.ts b/store/src/test/javascript/spec/app/utils.ts similarity index 100% rename from online-store/src/test/javascript/spec/app/utils.ts rename to store/src/test/javascript/spec/app/utils.ts diff --git a/online-store/src/test/javascript/spec/enzyme-setup.ts b/store/src/test/javascript/spec/enzyme-setup.ts similarity index 100% rename from online-store/src/test/javascript/spec/enzyme-setup.ts rename to store/src/test/javascript/spec/enzyme-setup.ts diff --git a/online-store/src/test/javascript/spec/storage-mock.ts b/store/src/test/javascript/spec/storage-mock.ts similarity index 100% rename from online-store/src/test/javascript/spec/storage-mock.ts rename to store/src/test/javascript/spec/storage-mock.ts diff --git a/online-store/src/test/resources/config/application.yml b/store/src/test/resources/config/application.yml similarity index 100% rename from online-store/src/test/resources/config/application.yml rename to store/src/test/resources/config/application.yml diff --git a/online-store/src/test/resources/config/bootstrap.yml b/store/src/test/resources/config/bootstrap.yml similarity index 100% rename from online-store/src/test/resources/config/bootstrap.yml rename to store/src/test/resources/config/bootstrap.yml diff --git a/online-store/src/test/resources/i18n/messages_en.properties b/store/src/test/resources/i18n/messages_en.properties similarity index 100% rename from online-store/src/test/resources/i18n/messages_en.properties rename to store/src/test/resources/i18n/messages_en.properties diff --git a/online-store/src/test/resources/logback.xml b/store/src/test/resources/logback.xml similarity index 100% rename from online-store/src/test/resources/logback.xml rename to store/src/test/resources/logback.xml diff --git a/online-store/src/test/resources/templates/mail/testEmail.html b/store/src/test/resources/templates/mail/testEmail.html similarity index 100% rename from online-store/src/test/resources/templates/mail/testEmail.html rename to store/src/test/resources/templates/mail/testEmail.html diff --git a/online-store/store.jdl b/store/store.jdl similarity index 100% rename from online-store/store.jdl rename to store/store.jdl diff --git a/online-store/store.png b/store/store.png similarity index 100% rename from online-store/store.png rename to store/store.png diff --git a/online-store/tsconfig.e2e.json b/store/tsconfig.e2e.json similarity index 100% rename from online-store/tsconfig.e2e.json rename to store/tsconfig.e2e.json diff --git a/online-store/tsconfig.json b/store/tsconfig.json similarity index 100% rename from online-store/tsconfig.json rename to store/tsconfig.json diff --git a/online-store/tsconfig.test.json b/store/tsconfig.test.json similarity index 100% rename from online-store/tsconfig.test.json rename to store/tsconfig.test.json diff --git a/online-store/tslint.json b/store/tslint.json similarity index 100% rename from online-store/tslint.json rename to store/tslint.json diff --git a/online-store/webpack/logo-jhipster.png b/store/webpack/logo-jhipster.png similarity index 100% rename from online-store/webpack/logo-jhipster.png rename to store/webpack/logo-jhipster.png diff --git a/online-store/webpack/utils.js b/store/webpack/utils.js similarity index 100% rename from online-store/webpack/utils.js rename to store/webpack/utils.js diff --git a/online-store/webpack/webpack.common.js b/store/webpack/webpack.common.js similarity index 100% rename from online-store/webpack/webpack.common.js rename to store/webpack/webpack.common.js diff --git a/online-store/webpack/webpack.dev.js b/store/webpack/webpack.dev.js similarity index 100% rename from online-store/webpack/webpack.dev.js rename to store/webpack/webpack.dev.js diff --git a/online-store/webpack/webpack.prod.js b/store/webpack/webpack.prod.js similarity index 100% rename from online-store/webpack/webpack.prod.js rename to store/webpack/webpack.prod.js