Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ERROR! Directory import is not supported resolving ES modules imported #58

Closed
naris opened this issue Oct 5, 2022 · 7 comments
Closed

Comments

@naris
Copy link

naris commented Oct 5, 2022

Attempting up upgrade to the just released 7.9.3 version of the latest generator-jhipster-primeng-blueprint:

 npx jhipster upgrade --skip-checks --target-version 7.8.1

this error occurred:

✖ An error occured while running jhipster:app#compose
ERROR! Directory import '...\node_modules\generator-jhipster\generators\client' is not supported resolving ES modules imported from ...\node_modules\generator-jhipster-primeng-blueprint\generators\client\generator.mjs
Did you mean to import generator-jhipster/generators/client/index.js?
Error [ERR_UNSUPPORTED_DIR_IMPORT]: Directory import '...\node_modules\generator-jhipster\generators\client' is not supported resolving ES modules imported from ...\node_modules\generator-jhipster-primeng-blueprint\generators\client\generator.mjs
Did you mean to import generator-jhipster/generators/client/index.js?
    at new NodeError (node:internal/errors:371:5)
    at finalizeResolution (node:internal/modules/esm/resolve:414:17)
    at moduleResolve (node:internal/modules/esm/resolve:983:10)
    at defaultResolve (node:internal/modules/esm/resolve:1080:11)
    at ESMLoader.resolve (node:internal/modules/esm/loader:530:30)
    at ESMLoader.getModuleJob (node:internal/modules/esm/loader:251:18)
    at ModuleWrap.<anonymous> (node:internal/modules/esm/module_job:79:40)
    at link (node:internal/modules/esm/module_job:78:36) {
  code: 'ERR_UNSUPPORTED_DIR_IMPORT',
  url: 'file:///.../node_modules/generator-jhipster/generators/client'
}
(node:21472) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./generators/" in the "exports" field module resolution of the package at ...\node_modules\generator-jhipster\package.json imported from ...\node_modules\generator-jhipster-primeng-blueprint\generators\client\generator.mjs.
Update this package.json to use a subpath pattern like "./generators/*".
ERROR! Something went wrong while generating project! Error: Command failed: "...\node_modules\.bin/jhipster" --with-entities --force --skip-install --skip-git --ignore-errors --no-insight --skip-checks
Error: Something went wrong while generating project! Error: Command failed: "...\node_modules\.bin/jhipster" --with-entities --force --skip-install --skip-git --ignore-errors --no-insight --skip-checks
    at module.exports.error (...\node_modules\generator-jhipster\generators\generator-base.js:1889:11)
    at module.exports._generate ...\node_modules\generator-jhipster\generators\upgrade\index.js:176:12)
    at module.exports._regenerate (...\node_modules\generator-jhipster\generators\upgrade\index.js:192:10)
    at module.exports.generateWithTargetVersion (...\node_modules\generator-jhipster\generators\upgrade\index.js:480:14)
    at Object.<anonymous> (...\node_modules\yeoman-generator\lib\index.js:1097:23)
    at C:\src\totalfact\node_modules\run-async\index.js:49:25
    at new Promise (<anonymous>)
    at C:\src\totalfact\node_modules\run-async\index.js:26:19
    at C:\src\totalfact\node_modules\yeoman-generator\lib\index.js:1098:9
    at new Promise (<anonymous>)
    at module.exports.executeTask (...\node_modules\yeoman-generator\lib\index.js:1069:12)
    at runLoop.add.once (...\node_modules\yeoman-generator\lib\index.js:1049:14)
    at Immediate.<anonymous> (...\node_modules\grouped-queue\lib\subqueue.js:48:34)
    at processImmediate (node:internal/timers:466:21)
@yelhouti
Copy link
Contributor

yelhouti commented Oct 5, 2022

As explained, this blueprint requires some changes in generator-jhipster, for it to work you need to "npm link generator-jhipster" with generator-jhipster matching the provided commit

@yelhouti yelhouti closed this as completed Oct 5, 2022
@naris
Copy link
Author

naris commented Oct 5, 2022

As explained, this blueprint requires some changes in generator-jhipster, for it to work you need to "npm link generator-jhipster" with generator-jhipster matching the provided commit

The provided commit has conflicts that must be resolved.

That is not an acceptable solution, to rely on a problematic commit to jhipster?!?

@yelhouti
Copy link
Contributor

yelhouti commented Oct 5, 2022

@naris you can rebase and fix the blueprint if you want. Jhipster has tens of commits everyday creating tons of conflict with my PR, I am not relying on the PR and enable /unwilling to rebase it everyday. I am using my own branch: https://github.com/yelhouti/generator-jhipster/tree/composite-key
And it works with nom link as explained
feel free to not use it, or help fix the conflicts and ask the maintainer the merge it so we don't have to maintain it.

@naris
Copy link
Author

naris commented Oct 5, 2022

I will see if I can fix this. However, the error message (Directory import is not supported) is indicative of incorrect code and not a version mismatch somewhere that needs a newer version of jhipster.

see: https://stackoverflow.com/questions/64453859/directory-import-is-not-supported-resolving-es-modules-with-node-js

@naris
Copy link
Author

naris commented Oct 6, 2022

It is turning out to be really problematic to rely on a specific version of jhipster as jhipster upgrade installs jhipster and the blueprints from npm when it runs. I am continuing to work on this but it is definitely problematic :(

@naris
Copy link
Author

naris commented Oct 6, 2022

I managed to comment out the code in jhipster that installs jhipster and any blueprints and fixed the issue by editing the files blueprint in node_modules in the project I was trying to upgrade. All that needed to be done is to add "/index.js" to 3 import statements in 3 files:

generator-jhipster-primeng-blueprint\generators\client\generator.mjs:

import ClientGenerator from 'generator-jhipster/generators/client/index.js';

generator-jhipster-primeng-blueprint\generators\entity-client\generator.mjs:

import EntityClientGenerator from 'generator-jhipster/generators/entity-client/index.js';

generator-jhipster-primeng-blueprint\generators\entity-i18n\generator.mjs:

import EntityI18NGenerator from 'generator-jhipster/generators/entity-i18n/index.js';

After those 3 lines are changed, the update commands works with the released version of jhipster without having to use any particular version of jhipster (such as https://github.com/yelhouti/generator-jhipster/tree/composite-key) or jhipster/generator-jhipster#19849

I will work on forking this project, making the changes and a pull request for it tomorrow

@naris
Copy link
Author

naris commented Oct 6, 2022

Here is the output of the successful upgrade:

    C:\src\totalfact   jhipster_upgrade  npx jhipster upgrade --skip-checks --target-version 7.8.1 --target-blueprint-versions [email protected]
INFO! Using bundled JHipster
INFO! No custom sharedOptions found within blueprint: generator-jhipster-primeng-blueprint at C:/src/totalfact/node_modules/generator-jhipster-primeng-blueprint
INFO! No custom commands found within blueprint: generator-jhipster-primeng-blueprint at C:/src/totalfact/node_modules/generator-jhipster-primeng-blueprint
(node:6444) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./lib/util/" in the "exports" field module resolution of the package at C:\src\totalfact\node_modules\yeoman-environment\package.json.
Update this package.json to use a subpath pattern like "./lib/util/*".
(Use `node --trace-deprecation ...` to show where the warning was created)

        ██╗ ██╗   ██╗ ████████╗ ███████╗   ██████╗ ████████╗ ████████╗ ███████╗
        ██║ ██║   ██║ ╚══██╔══╝ ██╔═══██╗ ██╔════╝ ╚══██╔══╝ ██╔═════╝ ██╔═══██╗
        ██║ ████████║    ██║    ███████╔╝ ╚█████╗     ██║    ██████╗   ███████╔╝
  ██╗   ██║ ██╔═══██║    ██║    ██╔════╝   ╚═══██╗    ██║    ██╔═══╝   ██╔══██║
  ╚██████╔╝ ██║   ██║ ████████╗ ██║       ██████╔╝    ██║    ████████╗ ██║  ╚██╗
   ╚═════╝  ╚═╝   ╚═╝ ╚═══════╝ ╚═╝       ╚═════╝     ╚═╝    ╚═══════╝ ╚═╝   ╚═╝
                            https://www.jhipster.tech
Welcome to JHipster v7.9.3

Welcome to the JHipster Upgrade Sub-Generator
This will upgrade your current application codebase to the latest JHipster version
✔ Checking for new blueprint versions
Blueprint generator-jhipster-primeng-blueprint will be upgraded to target version: 7.9.3
✔ Done checking for new version of blueprints
Upgrading to the target JHipster version: 7.8.1
git rev-parse -q --is-inside-work-tree
true
✔ Git repository detected
git status --porcelain
git rev-parse -q --abbrev-ref HEAD
feature/jhipster_update
? Unify blueprints configurations? Yes
     info Skipping config upgrade, config generated with jhipster version: 7.8.1
git rev-parse -q --verify jhipster_upgrade
7410c26b023578466a730d29e601dc28ebd82288
git checkout -q jhipster_upgrade
✔ Checked out branch "jhipster_upgrade"
✔ Skipped installing generator-jhipster 7.8.1 locally
✔ Upgrading blueprints...
✔ Skipped installing generator-jhipster-primeng-blueprint 7.9.3 locally
✔ Done upgrading blueprint generator-jhipster-primeng-blueprint to version 7.9.3
✔ Done upgrading blueprints
     info Removing C:\src\totalfact\.browserslistrc
     info Removing C:\src\totalfact\.devcontainer
     info Removing C:\src\totalfact\.editorconfig
     info Removing C:\src\totalfact\.eslintignore
     info Removing C:\src\totalfact\.eslintrc.json
     info Removing C:\src\totalfact\.gitattributes
     info Removing C:\src\totalfact\.gitignore
     info Removing C:\src\totalfact\.husky
     info Removing C:\src\totalfact\.lintstagedrc.js
     info Removing C:\src\totalfact\.npmrc
     info Removing C:\src\totalfact\.prettierignore
     info Removing C:\src\totalfact\.prettierrc
     info Removing C:\src\totalfact\angular.json
     info Removing C:\src\totalfact\checkstyle.xml
     info Removing C:\src\totalfact\jest.conf.js
     info Removing C:\src\totalfact\mvnw
     info Removing C:\src\totalfact\mvnw.cmd
     info Removing C:\src\totalfact\ngsw-config.json
     info Removing C:\src\totalfact\npmw
     info Removing C:\src\totalfact\npmw.cmd
     info Removing C:\src\totalfact\package.json
     info Removing C:\src\totalfact\pom.xml
     info Removing C:\src\totalfact\README.md
     info Removing C:\src\totalfact\sonar-project.properties
     info Removing C:\src\totalfact\src
     info Removing C:\src\totalfact\target
     info Removing C:\src\totalfact\tsconfig.app.json
     info Removing C:\src\totalfact\tsconfig.json
     info Removing C:\src\totalfact\tsconfig.spec.json
     info Removing C:\src\totalfact\webpack
✔ Cleaned up project directory
Regenerating application with JHipster 7.8.1 and generator-jhipster-primeng-blueprint7.9.3 ...
C:\src\totalfact\node_modules\.bin
     info "C:\src\totalfact\node_modules\.bin/jhipster" --with-entities --force --skip-install --skip-git --ignore-errors --no-insight --skip-checks
INFO! Switching to JHipster installed locally in current project's node repository (node_modules)
INFO! No custom sharedOptions found within blueprint: generator-jhipster-primeng-blueprint at C:/src/totalfact/node_modules/generator-jhipster-primeng-blueprint
INFO! No custom commands found within blueprint: generator-jhipster-primeng-blueprint at C:/src/totalfact/node_modules/generator-jhipster-primeng-blueprint
(node:27768) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./lib/util/" in the "exports" field module resolution of the package at C:\src\totalfact\node_modules\yeoman-environment\package.json.
Update this package.json to use a subpath pattern like "./lib/util/*".
(Use `node --trace-deprecation ...` to show where the warning was created)

        ██╗ ██╗   ██╗ ████████╗ ███████╗   ██████╗ ████████╗ ████████╗ ███████╗
        ██║ ██║   ██║ ╚══██╔══╝ ██╔═══██╗ ██╔════╝ ╚══██╔══╝ ██╔═════╝ ██╔═══██╗
        ██║ ████████║    ██║    ███████╔╝ ╚█████╗     ██║    ██████╗   ███████╔╝
  ██╗   ██║ ██╔═══██║    ██║    ██╔════╝   ╚═══██╗    ██║    ██╔═══╝   ██╔══██║
  ╚██████╔╝ ██║   ██║ ████████╗ ██║       ██████╔╝    ██║    ████████╗ ██║  ╚██╗
   ╚═════╝  ╚═╝   ╚═╝ ╚═══════╝ ╚═╝       ╚═════╝     ╚═╝    ╚═══════╝ ╚═╝   ╚═╝
                            https://www.jhipster.tech
Welcome to JHipster v7.9.3

Application files will be generated in folder: C:\src\totalfact
 _______________________________________________________________________________________________________________

  Documentation for creating an application is at https://www.jhipster.tech/creating-an-app/
  If you find JHipster useful, consider sponsoring the project at https://opencollective.com/generator-jhipster
 _______________________________________________________________________________________________________________

(node:27768) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./generators/" in the "exports" field module resolution of the package at C:\src\totalfact\node_modules\generator-jhipster\package.json imported from C:\src\totalfact\node_modules\generator-jhipster-primeng-blueprint\generators\client\generator.mjs.
Update this package.json to use a subpath pattern like "./generators/*".
     info Using blueprint generator-jhipster-primeng-blueprint for client subgenerator
(node:27768) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./jdl/" in the "exports" field module resolution of the package at C:\src\totalfact\node_modules\generator-jhipster\package.json.
Update this package.json to use a subpath pattern like "./jdl/*".
This is an existing project, using the configuration from your .yo-rc.json file
to re-generate the project...


Found the .jhipster\UPC.json configuration file, entity can be automatically generated!


Found the .jhipster\UPCRule.json configuration file, entity can be automatically generated!


Found the .jhipster\PlatformType.json configuration file, entity can be automatically generated!


Found the .jhipster\Platform.json configuration file, entity can be automatically generated!


Found the .jhipster\PlatformDE.json configuration file, entity can be automatically generated!


Found the .jhipster\PlatformInst.json configuration file, entity can be automatically generated!


Found the .jhipster\PlatformList.json configuration file, entity can be automatically generated!


Found the .jhipster\Product.json configuration file, entity can be automatically generated!


Found the .jhipster\Release.json configuration file, entity can be automatically generated!


Found the .jhipster\Dimension.json configuration file, entity can be automatically generated!


Found the .jhipster\Category.json configuration file, entity can be automatically generated!


Found the .jhipster\Attribute.json configuration file, entity can be automatically generated!


Found the .jhipster\Source.json configuration file, entity can be automatically generated!


Found the .jhipster\Section.json configuration file, entity can be automatically generated!


Found the .jhipster\FieldValue.json configuration file, entity can be automatically generated!


Found the .jhipster\Task.json configuration file, entity can be automatically generated!


Found the .jhipster\Step.json configuration file, entity can be automatically generated!


Found the .jhipster\UPCHistory.json configuration file, entity can be automatically generated!


Found the .jhipster\PlatformHistory.json configuration file, entity can be automatically generated!


Found the .jhipster\PlatformDEHistory.json configuration file, entity can be automatically generated!


Found the .jhipster\PlatformInstHistory.json configuration file, entity can be automatically generated!


Found the .jhipster\PlatformListHistory.json configuration file, entity can be automatically generated!


Found the .jhipster\FieldValueHistory.json configuration file, entity can be automatically generated!


Found the .jhipster\PrivateNotes.json configuration file, entity can be automatically generated!


Found the .jhipster\ProtectedClass.json configuration file, entity can be automatically generated!


Found the .jhipster\Derivation.json configuration file, entity can be automatically generated!

     info Creating changelog for entities UPC,UPCRule,PlatformType,Platform,PlatformDE,PlatformInst,PlatformList,Product,Release,Dimension,Category,Attribute,Source,Section,FieldValue,Task,Step,UPCHistory,PlatformHistory,PlatformDEHistory,PlatformInstHistory,PlatformListHistory,FieldValueHistory,PrivateNotes,ProtectedClass,Derivation
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-client subgenerator
     info Using blueprint generator-jhipster-primeng-blueprint for entity-i18n subgenerator
WARNING! Error at 'UPC' definitions: 'otherEntityRelationshipName' is set with value 'uPC' at relationship 'attribute' but no back-reference was found at 'attribute'
WARNING! Error at 'UPC' definitions: 'otherEntityRelationshipName' is set with value 'uPC' at relationship 'category' but no back-reference was found at 'category'
WARNING! Error at 'UPC' definitions: 'otherEntityRelationshipName' is set with value 'uPC' at relationship 'protectedClass' but no back-reference was found at 'protectedClass'
WARNING! Error at 'Platform' definitions: 'otherEntityRelationshipName' is set with value 'platform' at relationship 'release' but no back-reference was found at 'release'
WARNING! Error at 'Platform' definitions: 'otherEntityRelationshipName' is set with value 'platform' at relationship 'platformType' but no back-reference was found at 'platformType'
WARNING! Error at 'PlatformDE' definitions: 'otherEntityRelationshipName' is set with value 'platformDE' at relationship 'section' but no back-reference was found at 'section'
WARNING! Error at 'Product' definitions: 'otherEntityRelationshipName' is set with value 'product' at relationship 'platformType' but no back-reference was found at 'platformType'
WARNING! Error at 'Step' definitions: 'otherEntityRelationshipName' is set with value 'step' at relationship 'task' but no back-reference was found at 'task'

KeyStore 'C:\src\totalfact\src\main\resources\config\tls\/keystore.p12' generated successfully.


Unable to find src/main/webapp/app/config/dayjs.ts or missing required jhipster-needle. DayJS language task not updated with languages: en since block was not found. Check if you have enabled translation support.


Unable to find src/main/webapp/app/shared/language/find-language-from-key.pipe.ts or missing required jhipster-needle. Language pipe not updated with languages: en since block was not found. Check if you have enabled translation support.


Unable to find src/main/webapp/app/config/language.constants.ts or missing required jhipster-needle. LANGUAGE constant not updated with languages: en since block was not found. Check if you have enabled translation support.


Unable to find webpack/webpack.custom.js or missing required jhipster-needle. Webpack language task not updated with languages: en since block was not found. Check if you have enabled translation support.

   create .prettierrc
   create .prettierignore
   create package.json
    force .yo-rc.json
    force .jhipster\UPC.json
    force .jhipster\UPCRule.json
    force .jhipster\Category.json
    force .jhipster\Attribute.json
    force .jhipster\PlatformType.json
    force .jhipster\Source.json
    force .jhipster\Platform.json
    force .jhipster\Section.json
    force .jhipster\PlatformDE.json
    force .jhipster\FieldValue.json
    force .jhipster\PlatformInst.json
    force .jhipster\Task.json
    force .jhipster\PlatformList.json
    force .jhipster\Step.json
    force .jhipster\UPCHistory.json
    force .jhipster\Product.json
    force .jhipster\PlatformHistory.json
    force .jhipster\Release.json
    force .jhipster\PlatformDEHistory.json
    force .jhipster\PlatformInstHistory.json
    force .jhipster\Dimension.json
    force .jhipster\PlatformListHistory.json
    force .jhipster\FieldValueHistory.json
    force .jhipster\PrivateNotes.json
    force .jhipster\ProtectedClass.json
    force .jhipster\Derivation.json
   create .gitignore
   create .gitattributes
   create .editorconfig
   create sonar-project.properties
   create .lintstagedrc.js
   create .husky\pre-commit
   create mvnw
   create mvnw.cmd
    force .mvn\jvm.config
    force .mvn\wrapper\maven-wrapper.jar
    force .mvn\wrapper\maven-wrapper.properties
   create npmw
   create npmw.cmd
   create src\main\resources\banner.txt
   create src\main\resources\config\liquibase\changelog\00000000000000_initial_schema.xml
   create src\main\resources\config\liquibase\master.xml
   create src\main\docker\jib\entrypoint.sh
   create checkstyle.xml
   create .devcontainer\Dockerfile
   create pom.xml
   create src\main\resources\logback-spring.xml
   create src\main\resources\i18n\messages.properties
   create .devcontainer\devcontainer.json
   create src\main\resources\templates\error.html
   create src\main\resources\config\application.yml
   create src\main\docker\app.yml
   create src\main\resources\config\application-dev.yml
   create src\main\docker\swagger-editor.yml
   create src\main\resources\config\application-tls.yml
   create src\main\docker\keycloak.yml
   create src\main\resources\config\application-prod.yml
   create src\main\docker\jhipster-control-center.yml
   create src\main\docker\realm-config\jhipster-realm.json
   create src\main\docker\sonar.yml
   create src\main\docker\monitoring.yml
   create src\main\docker\prometheus\prometheus.yml
   create src\main\resources\swagger\api.yml
   create src\main\docker\grafana\provisioning\dashboards\dashboard.yml
   create src\main\docker\grafana\provisioning\dashboards\JVM.json
   create src\main\docker\grafana\provisioning\datasources\datasource.yml
   create src\main\java\com\epsilon\totalfact\security\SpringSecurityAuditorAware.java
   create src\main\java\com\epsilon\totalfact\config\OpenApiConfiguration.java
   create src\main\java\com\epsilon\totalfact\GeneratedByJHipster.java
   create src\main\java\com\epsilon\totalfact\config\StaticResourcesWebConfiguration.java
   create src\main\java\com\epsilon\totalfact\security\SecurityUtils.java
   create src\main\java\com\epsilon\totalfact\security\oauth2\CustomClaimConverter.java
   create src\main\java\com\epsilon\totalfact\aop\logging\LoggingAspect.java
   create src\main\java\com\epsilon\totalfact\config\Constants.java
   create src\main\java\com\epsilon\totalfact\security\AuthoritiesConstants.java
   create src\main\java\com\epsilon\totalfact\config\package-info.java
   create src\main\java\com\epsilon\totalfact\config\LocaleConfiguration.java
   create src\test\resources\logback.xml
   create src\main\java\com\epsilon\totalfact\security\package-info.java
   create src\main\java\com\epsilon\totalfact\web\rest\AuthInfoResource.java
   create src\main\java\com\epsilon\totalfact\config\AsyncConfiguration.java
   create src\main\java\com\epsilon\totalfact\config\CacheConfiguration.java
   create src\main\java\com\epsilon\totalfact\web\rest\vm\package-info.java
   create src\test\resources\junit-platform.properties
   create src\main\java\com\epsilon\totalfact\web\rest\LogoutResource.java
   create src\main\java\com\epsilon\totalfact\config\CRLFLogConverter.java
   create src\main\java\com\epsilon\totalfact\config\DatabaseConfiguration.java
   create src\main\java\com\epsilon\totalfact\web\rest\package-info.java
   create src\main\java\com\epsilon\totalfact\TotalFactApp.java
   create src\main\java\com\epsilon\totalfact\config\SecurityConfiguration.java
   create src\main\java\com\epsilon\totalfact\config\DateTimeFormatConfiguration.java
   create src\main\java\com\epsilon\totalfact\domain\package-info.java
   create src\main\java\com\epsilon\totalfact\web\rest\ClientForwardController.java
   create src\main\java\com\epsilon\totalfact\security\oauth2\AudienceValidator.java
   create src\main\java\com\epsilon\totalfact\ApplicationWebXml.java
   create src\main\java\com\epsilon\totalfact\config\LoggingConfiguration.java
   create src\main\java\com\epsilon\totalfact\domain\AbstractAuditingEntity.java
   create src\main\java\com\epsilon\totalfact\config\OAuth2Configuration.java
   create src\main\java\com\epsilon\totalfact\security\oauth2\JwtGrantedAuthorityConverter.java
   create src\main\java\com\epsilon\totalfact\config\ApplicationProperties.java
   create src\main\java\com\epsilon\totalfact\repository\package-info.java
   create src\main\java\com\epsilon\totalfact\web\filter\OAuth2RefreshTokensWebFilter.java
   create src\main\java\com\epsilon\totalfact\security\oauth2\OAuthIdpTokenResponseDTO.java
   create src\main\java\com\epsilon\totalfact\config\JacksonConfiguration.java
   create src\main\java\com\epsilon\totalfact\service\package-info.java
   create src\test\gatling\conf\gatling.conf
   create src\main\java\com\epsilon\totalfact\config\LoggingAspectConfiguration.java
   create src\main\java\com\epsilon\totalfact\web\rest\errors\package-info.java
   create src\test\gatling\conf\logback.xml
   create src\main\java\com\epsilon\totalfact\config\WebConfigurer.java
   create src\main\java\com\epsilon\totalfact\web\rest\errors\BadRequestAlertException.java
   create src\main\java\com\epsilon\totalfact\web\rest\errors\ErrorConstants.java
   create src\main\java\com\epsilon\totalfact\domain\User.java
   create src\main\java\com\epsilon\totalfact\web\rest\errors\ExceptionTranslator.java
   create src\main\java\com\epsilon\totalfact\domain\Authority.java
   create src\main\java\com\epsilon\totalfact\web\rest\errors\FieldErrorVM.java
   create src\main\java\com\epsilon\totalfact\repository\AuthorityRepository.java
   create src\main\resources\config\liquibase\data\user.csv
   create src\main\resources\config\liquibase\data\authority.csv
   create src\test\java\com\epsilon\totalfact\security\SecurityUtilsUnitTest.java
   create src\main\resources\config\liquibase\data\user_authority.csv
   create src\test\java\com\epsilon\totalfact\config\WebConfigurerTest.java
   create src\test\java\com\epsilon\totalfact\config\WebConfigurerTestController.java
   create src\main\java\com\epsilon\totalfact\service\UserService.java
   create src\test\java\com\epsilon\totalfact\TechnicalStructureTest.java
   create src\test\java\com\epsilon\totalfact\config\StaticResourcesWebConfigurerTest.java
   create src\test\java\com\epsilon\totalfact\config\AsyncSyncConfiguration.java
   create src\test\java\com\epsilon\totalfact\test\util\OAuth2TestUtil.java
   create src\test\java\com\epsilon\totalfact\security\oauth2\AudienceValidatorTest.java
   create src\test\java\com\epsilon\totalfact\IntegrationTest.java
   create src\test\java\com\epsilon\totalfact\web\rest\TestUtil.java
   create src\test\java\com\epsilon\totalfact\config\TestSecurityConfiguration.java
   create src\test\java\com\epsilon\totalfact\config\SpringBootTestClassOrderer.java
   create src\test\java\com\epsilon\totalfact\web\rest\errors\ExceptionTranslatorTestController.java
   create src\test\java\com\epsilon\totalfact\web\rest\errors\ExceptionTranslatorIT.java
   create src\test\java\com\epsilon\totalfact\web\rest\ClientForwardControllerTest.java
   create src\main\java\com\epsilon\totalfact\repository\UserRepository.java
   create src\test\java\com\epsilon\totalfact\security\oauth2\CustomClaimConverterIT.java
   create src\test\resources\config\application.yml
   create src\main\java\com\epsilon\totalfact\web\rest\PublicUserResource.java
   create src\main\java\com\epsilon\totalfact\web\rest\vm\ManagedUserVM.java
   create src\main\java\com\epsilon\totalfact\web\rest\AccountResource.java
   create src\main\java\com\epsilon\totalfact\service\dto\package-info.java
   create src\main\java\com\epsilon\totalfact\service\dto\AdminUserDTO.java
   create src\test\java\com\epsilon\totalfact\web\rest\LogoutResourceIT.java
   create src\test\java\com\epsilon\totalfact\web\rest\PublicUserResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\dto\UserDTO.java
   create src\test\java\com\epsilon\totalfact\web\rest\UserResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\mapper\package-info.java
   create src\test\java\com\epsilon\totalfact\web\rest\AccountResourceIT.java
   create src\test\resources\testcontainers.properties
   create src\main\java\com\epsilon\totalfact\service\mapper\UserMapper.java
   create src\test\resources\META-INF\spring.factories
   create src\test\java\com\epsilon\totalfact\config\TestContainersSpringContextCustomizerFactory.java
   create src\test\java\com\epsilon\totalfact\web\rest\WithUnauthenticatedMockUser.java
   create src\main\java\com\epsilon\totalfact\config\LiquibaseConfiguration.java
   create src\test\java\com\epsilon\totalfact\service\UserServiceIT.java
   create src\test\java\com\epsilon\totalfact\service\mapper\UserMapperTest.java
   create src\test\java\com\epsilon\totalfact\config\EmbeddedSQL.java
   create src\test\java\com\epsilon\totalfact\config\SqlTestContainer.java
   create src\test\resources\config\application-testdev.yml
   create src\test\resources\config\application-testprod.yml
   create src\test\java\com\epsilon\totalfact\config\timezone\HibernateTimeZoneIT.java
   create src\test\java\com\epsilon\totalfact\repository\timezone\DateTimeWrapper.java
   create src\test\java\com\epsilon\totalfact\repository\timezone\DateTimeWrapperRepository.java
   create src\main\resources\i18n\messages_en.properties
   create src\main\java\com\epsilon\totalfact\web\rest\UPCResource.java
   create src\main\webapp\i18n\en\error.json
   create src\main\webapp\i18n\en\activate.json
   create src\test\java\com\epsilon\totalfact\web\rest\UPCResourceIT.java
   create src\main\webapp\i18n\en\settings.json
   create src\main\webapp\i18n\en\global.json
   create src\main\webapp\i18n\en\login.json
   create src\main\webapp\i18n\en\reset.json
   create src\main\java\com\epsilon\totalfact\service\UPCQueryService.java
   create src\main\webapp\i18n\en\user-management.json
   create src\main\webapp\i18n\en\health.json
   create src\main\java\com\epsilon\totalfact\repository\UPCRepository.java
   create src\main\webapp\i18n\en\home.json
   create src\main\java\com\epsilon\totalfact\repository\UPCRepositoryWithBagRelationships.java
   create src\main\java\com\epsilon\totalfact\repository\UPCRepositoryWithBagRelationshipsImpl.java
   create src\main\webapp\i18n\en\configuration.json
   create src\main\webapp\i18n\en\password.json
   create src\test\java\com\epsilon\totalfact\domain\UPCTest.java
   create src\main\java\com\epsilon\totalfact\service\UPCService.java
   create src\test\gatling\user-files\simulations\UPCGatlingTest.scala
   create src\main\webapp\i18n\en\register.json
   create src\main\webapp\i18n\en\logs.json
   create src\test\java\com\epsilon\totalfact\domain\UPCRuleTest.java
   create src\main\webapp\i18n\en\sessions.json
   create src\main\webapp\i18n\en\metrics.json
   create src\main\java\com\epsilon\totalfact\service\criteria\UPCCriteria.java
   create src\main\java\com\epsilon\totalfact\web\rest\UPCRuleResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\UPCRuleResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\UPCRuleCriteria.java
   create src\main\java\com\epsilon\totalfact\service\UPCRuleQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\UPCRuleRepository.java
   create src\main\java\com\epsilon\totalfact\service\UPCRuleService.java
   create src\test\gatling\user-files\simulations\UPCRuleGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\PlatformTypeTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\PlatformTypeResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\PlatformTypeResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\PlatformTypeCriteria.java
   create src\main\java\com\epsilon\totalfact\service\PlatformTypeQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\PlatformTypeRepository.java
   create src\main\java\com\epsilon\totalfact\service\PlatformTypeService.java
   create src\test\gatling\user-files\simulations\PlatformTypeGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\PlatformTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\PlatformResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\PlatformResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\PlatformCriteria.java
   create src\main\java\com\epsilon\totalfact\service\PlatformQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\PlatformRepository.java
   create src\main\java\com\epsilon\totalfact\repository\PlatformRepositoryWithBagRelationships.java
   create src\main\java\com\epsilon\totalfact\repository\PlatformRepositoryWithBagRelationshipsImpl.java
   create src\main\java\com\epsilon\totalfact\service\PlatformService.java
   create src\test\gatling\user-files\simulations\PlatformGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\PlatformDETest.java
   create src\main\java\com\epsilon\totalfact\web\rest\PlatformDEResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\PlatformDEResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\PlatformDECriteria.java
   create src\main\java\com\epsilon\totalfact\service\PlatformDEQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\PlatformDERepository.java
   create src\main\java\com\epsilon\totalfact\service\PlatformDEService.java
   create src\test\gatling\user-files\simulations\PlatformDEGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\PlatformInstTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\PlatformInstResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\PlatformInstResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\PlatformInstCriteria.java
   create src\main\java\com\epsilon\totalfact\service\PlatformInstQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\PlatformInstRepository.java
   create src\main\java\com\epsilon\totalfact\service\PlatformInstService.java
   create src\test\gatling\user-files\simulations\PlatformInstGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\PlatformListTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\PlatformListResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\PlatformListResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\PlatformListCriteria.java
   create src\main\java\com\epsilon\totalfact\service\PlatformListQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\PlatformListRepository.java
   create src\main\java\com\epsilon\totalfact\service\PlatformListService.java
   create src\test\gatling\user-files\simulations\PlatformListGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\ProductTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\ProductResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\ProductResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\ProductCriteria.java
   create src\main\java\com\epsilon\totalfact\service\ProductQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\ProductRepository.java
   create src\main\java\com\epsilon\totalfact\service\ProductService.java
   create src\test\gatling\user-files\simulations\ProductGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\ReleaseTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\ReleaseResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\ReleaseResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\ReleaseCriteria.java
   create src\main\java\com\epsilon\totalfact\service\ReleaseQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\ReleaseRepository.java
   create src\main\java\com\epsilon\totalfact\service\ReleaseService.java
   create src\test\gatling\user-files\simulations\ReleaseGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\DimensionTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\DimensionResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\DimensionResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\DimensionCriteria.java
   create src\main\java\com\epsilon\totalfact\service\DimensionQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\DimensionRepository.java
   create src\main\java\com\epsilon\totalfact\service\DimensionService.java
   create src\test\gatling\user-files\simulations\DimensionGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\CategoryTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\CategoryResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\CategoryResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\CategoryCriteria.java
   create src\main\java\com\epsilon\totalfact\service\CategoryQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\CategoryRepository.java
   create src\main\java\com\epsilon\totalfact\service\CategoryService.java
   create src\test\gatling\user-files\simulations\CategoryGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\AttributeTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\AttributeResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\AttributeResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\AttributeCriteria.java
   create src\main\java\com\epsilon\totalfact\service\AttributeQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\AttributeRepository.java
   create src\main\java\com\epsilon\totalfact\service\AttributeService.java
   create src\test\gatling\user-files\simulations\AttributeGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\SourceTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\SourceResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\SourceResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\SourceCriteria.java
   create src\main\java\com\epsilon\totalfact\service\SourceQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\SourceRepository.java
   create src\test\gatling\user-files\simulations\SourceGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\SourceService.java
   create src\test\java\com\epsilon\totalfact\domain\SectionTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\SectionResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\SectionResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\SectionCriteria.java
   create src\main\java\com\epsilon\totalfact\service\SectionQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\SectionRepository.java
   create src\test\gatling\user-files\simulations\SectionGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\SectionService.java
   create src\test\java\com\epsilon\totalfact\domain\FieldValueTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\FieldValueResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\FieldValueResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\FieldValueCriteria.java
   create src\main\java\com\epsilon\totalfact\service\FieldValueQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\FieldValueRepository.java
   create src\test\gatling\user-files\simulations\FieldValueGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\FieldValueService.java
   create src\test\java\com\epsilon\totalfact\domain\TaskTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\TaskResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\TaskResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\TaskCriteria.java
   create src\main\java\com\epsilon\totalfact\service\TaskQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\TaskRepository.java
   create src\test\gatling\user-files\simulations\TaskGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\TaskService.java
   create src\test\java\com\epsilon\totalfact\domain\StepTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\StepResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\StepResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\StepCriteria.java
   create src\main\java\com\epsilon\totalfact\service\StepQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\StepRepository.java
   create src\test\gatling\user-files\simulations\StepGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\StepService.java
   create src\test\java\com\epsilon\totalfact\domain\UPCHistoryTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\UPCHistoryResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\UPCHistoryResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\UPCHistoryCriteria.java
   create src\main\java\com\epsilon\totalfact\service\UPCHistoryQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\UPCHistoryRepository.java
   create src\test\gatling\user-files\simulations\UPCHistoryGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\UPCHistoryService.java
   create src\test\java\com\epsilon\totalfact\domain\PlatformHistoryTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\PlatformHistoryResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\PlatformHistoryResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\PlatformHistoryCriteria.java
   create src\main\java\com\epsilon\totalfact\service\PlatformHistoryQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\PlatformHistoryRepository.java
   create src\test\gatling\user-files\simulations\PlatformHistoryGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\PlatformHistoryService.java
   create src\test\java\com\epsilon\totalfact\domain\PlatformDEHistoryTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\PlatformDEHistoryResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\PlatformDEHistoryResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\PlatformDEHistoryCriteria.java
   create src\main\java\com\epsilon\totalfact\service\PlatformDEHistoryQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\PlatformDEHistoryRepository.java
   create src\main\java\com\epsilon\totalfact\service\PlatformDEHistoryService.java
   create src\test\gatling\user-files\simulations\PlatformDEHistoryGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\PlatformInstHistoryTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\PlatformInstHistoryResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\PlatformInstHistoryResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\PlatformInstHistoryCriteria.java
   create src\main\java\com\epsilon\totalfact\service\PlatformInstHistoryQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\PlatformInstHistoryRepository.java
   create src\main\java\com\epsilon\totalfact\service\PlatformInstHistoryService.java
   create src\test\gatling\user-files\simulations\PlatformInstHistoryGatlingTest.scala
   create src\test\java\com\epsilon\totalfact\domain\PlatformListHistoryTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\PlatformListHistoryResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\PlatformListHistoryResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\PlatformListHistoryCriteria.java
   create src\main\java\com\epsilon\totalfact\service\PlatformListHistoryQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\PlatformListHistoryRepository.java
   create src\test\gatling\user-files\simulations\PlatformListHistoryGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\PlatformListHistoryService.java
   create src\test\java\com\epsilon\totalfact\domain\FieldValueHistoryTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\FieldValueHistoryResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\FieldValueHistoryResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\FieldValueHistoryCriteria.java
   create src\main\java\com\epsilon\totalfact\service\FieldValueHistoryQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\FieldValueHistoryRepository.java
   create src\test\gatling\user-files\simulations\FieldValueHistoryGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\FieldValueHistoryService.java
   create src\test\java\com\epsilon\totalfact\domain\PrivateNotesTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\PrivateNotesResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\PrivateNotesResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\PrivateNotesCriteria.java
   create src\main\java\com\epsilon\totalfact\service\PrivateNotesQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\PrivateNotesRepository.java
   create src\test\gatling\user-files\simulations\PrivateNotesGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\PrivateNotesService.java
   create src\test\java\com\epsilon\totalfact\domain\ProtectedClassTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\ProtectedClassResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\ProtectedClassResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\ProtectedClassCriteria.java
   create src\main\java\com\epsilon\totalfact\service\ProtectedClassQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\ProtectedClassRepository.java
   create src\test\gatling\user-files\simulations\ProtectedClassGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\ProtectedClassService.java
   create src\test\java\com\epsilon\totalfact\domain\DerivationTest.java
   create src\main\java\com\epsilon\totalfact\web\rest\DerivationResource.java
   create src\test\java\com\epsilon\totalfact\web\rest\DerivationResourceIT.java
   create src\main\java\com\epsilon\totalfact\service\criteria\DerivationCriteria.java
   create src\main\java\com\epsilon\totalfact\service\DerivationQueryService.java
   create src\main\java\com\epsilon\totalfact\repository\DerivationRepository.java
   create src\test\gatling\user-files\simulations\DerivationGatlingTest.scala
   create src\main\java\com\epsilon\totalfact\service\DerivationService.java
   create src\main\resources\config\liquibase\fake-data\blob\hipster.png
   create src\main\resources\config\liquibase\fake-data\blob\hipster.txt
   create src\main\resources\config\liquibase\changelog\20220525172737_added_entity_UPC.xml
   create src\main\resources\config\liquibase\changelog\20220525172737_added_entity_constraints_UPC.xml
   create src\main\resources\config\liquibase\fake-data\20220525172737_entity_upc.csv
   create src\main\resources\config\liquibase\changelog\20220525172738_added_entity_UPCRule.xml
   create src\main\resources\config\liquibase\changelog\20220525172738_added_entity_constraints_UPCRule.xml
   create src\main\resources\config\liquibase\fake-data\20220525172738_entity_upc_rule.csv
   create src\main\resources\config\liquibase\changelog\20220525172739_added_entity_PlatformType.xml
   create src\main\resources\config\liquibase\fake-data\20220525172739_entity_platform_type.csv
   create src\main\resources\config\liquibase\changelog\20220525172740_added_entity_Platform.xml
   create src\main\resources\config\liquibase\changelog\20220525172740_added_entity_constraints_Platform.xml
   create src\main\resources\config\liquibase\fake-data\20220525172740_entity_platform.csv
   create src\main\resources\config\liquibase\changelog\20220525172741_added_entity_PlatformDE.xml
   create src\main\resources\config\liquibase\changelog\20220525172741_added_entity_constraints_PlatformDE.xml
   create src\main\resources\config\liquibase\fake-data\20220525172741_entity_platform_de.csv
   create src\main\resources\config\liquibase\changelog\20220525172742_added_entity_PlatformInst.xml
   create src\main\resources\config\liquibase\changelog\20220525172742_added_entity_constraints_PlatformInst.xml
   create src\main\resources\config\liquibase\fake-data\20220525172742_entity_platform_inst.csv
   create src\main\resources\config\liquibase\changelog\20220525172743_added_entity_PlatformList.xml
   create src\main\resources\config\liquibase\changelog\20220525172743_added_entity_constraints_PlatformList.xml
   create src\main\resources\config\liquibase\fake-data\20220525172743_entity_platform_list.csv
   create src\main\resources\config\liquibase\changelog\20220525172744_added_entity_Product.xml
   create src\main\resources\config\liquibase\changelog\20220525172744_added_entity_constraints_Product.xml
   create src\main\resources\config\liquibase\fake-data\20220525172744_entity_product.csv
   create src\main\resources\config\liquibase\changelog\20220525172745_added_entity_Release.xml
   create src\main\resources\config\liquibase\fake-data\20220525172745_entity_release.csv
   create src\main\resources\config\liquibase\changelog\20220525172746_added_entity_Dimension.xml
   create src\main\resources\config\liquibase\fake-data\20220525172746_entity_dimension.csv
   create src\main\resources\config\liquibase\changelog\20220525172747_added_entity_Category.xml
   create src\main\resources\config\liquibase\changelog\20220525172747_added_entity_constraints_Category.xml
   create src\main\resources\config\liquibase\fake-data\20220525172747_entity_category.csv
   create src\main\resources\config\liquibase\changelog\20220525172748_added_entity_Attribute.xml
   create src\main\resources\config\liquibase\fake-data\20220525172748_entity_attribute.csv
   create src\main\resources\config\liquibase\changelog\20220525172749_added_entity_Source.xml
   create src\main\resources\config\liquibase\fake-data\20220525172749_entity_source.csv
   create src\main\resources\config\liquibase\changelog\20220525172750_added_entity_Section.xml
   create src\main\resources\config\liquibase\fake-data\20220525172750_entity_section.csv
   create src\main\resources\config\liquibase\changelog\20220525172751_added_entity_FieldValue.xml
   create src\main\resources\config\liquibase\changelog\20220525172751_added_entity_constraints_FieldValue.xml
   create src\main\resources\config\liquibase\fake-data\20220525172751_entity_field_value.csv
   create src\main\resources\config\liquibase\changelog\20220525172752_added_entity_Task.xml
   create src\main\resources\config\liquibase\fake-data\20220525172752_entity_task.csv
   create src\main\resources\config\liquibase\changelog\20220525172753_added_entity_Step.xml
   create src\main\resources\config\liquibase\changelog\20220525172753_added_entity_constraints_Step.xml
   create src\main\resources\config\liquibase\fake-data\20220525172753_entity_step.csv
   create src\main\resources\config\liquibase\changelog\20220525172754_added_entity_UPCHistory.xml
   create src\main\resources\config\liquibase\fake-data\20220525172754_entity_upc_history.csv
   create src\main\resources\config\liquibase\changelog\20220525172755_added_entity_PlatformHistory.xml
   create src\main\resources\config\liquibase\fake-data\20220525172755_entity_platform_history.csv
   create src\main\resources\config\liquibase\changelog\20220525172756_added_entity_PlatformDEHistory.xml
   create src\main\resources\config\liquibase\fake-data\20220525172756_entity_platform_de_history.csv
   create src\main\resources\config\liquibase\changelog\20220525172757_added_entity_PlatformInstHistory.xml
   create src\main\resources\config\liquibase\fake-data\20220525172757_entity_platform_inst_history.csv
   create src\main\resources\config\liquibase\changelog\20220525172758_added_entity_PlatformListHistory.xml
   create src\main\resources\config\liquibase\fake-data\20220525172758_entity_platform_list_history.csv
   create src\main\resources\config\liquibase\changelog\20220525172759_added_entity_FieldValueHistory.xml
   create src\main\resources\config\liquibase\fake-data\20220525172759_entity_field_value_history.csv
   create src\main\resources\config\liquibase\changelog\20220614152213_added_entity_PrivateNotes.xml
   create src\main\resources\config\liquibase\changelog\20220614152213_added_entity_constraints_PrivateNotes.xml
   create src\main\resources\config\liquibase\fake-data\20220614152213_entity_private_notes.csv
   create src\main\resources\config\liquibase\changelog\20220614152214_added_entity_ProtectedClass.xml
   create src\main\resources\config\liquibase\fake-data\20220614152214_entity_protected_class.csv
   create src\main\resources\config\liquibase\changelog\20220614152215_added_entity_Derivation.xml
   create src\main\resources\config\liquibase\fake-data\20220614152215_entity_derivation.csv
   create README.md
   create src\main\java\com\epsilon\totalfact\domain\UPC.java
   create src\main\java\com\epsilon\totalfact\domain\UPCRule.java
   create src\main\java\com\epsilon\totalfact\domain\PlatformType.java
   create src\main\java\com\epsilon\totalfact\domain\Platform.java
   create src\main\java\com\epsilon\totalfact\domain\PlatformDE.java
   create src\main\java\com\epsilon\totalfact\domain\PlatformInst.java
   create src\main\java\com\epsilon\totalfact\domain\PlatformList.java
   create src\main\java\com\epsilon\totalfact\domain\Product.java
   create src\main\java\com\epsilon\totalfact\domain\Release.java
   create src\main\java\com\epsilon\totalfact\domain\Dimension.java
   create src\main\java\com\epsilon\totalfact\domain\Category.java
   create src\main\java\com\epsilon\totalfact\domain\Attribute.java
   create src\main\java\com\epsilon\totalfact\domain\Source.java
   create src\main\java\com\epsilon\totalfact\domain\Section.java
   create src\main\java\com\epsilon\totalfact\domain\FieldValue.java
   create src\main\java\com\epsilon\totalfact\domain\Task.java
   create src\main\java\com\epsilon\totalfact\domain\Step.java
   create src\main\java\com\epsilon\totalfact\domain\UPCHistory.java
   create src\main\java\com\epsilon\totalfact\domain\PlatformHistory.java
   create src\main\java\com\epsilon\totalfact\domain\PlatformDEHistory.java
   create src\main\java\com\epsilon\totalfact\domain\PlatformInstHistory.java
   create src\main\java\com\epsilon\totalfact\domain\PlatformListHistory.java
   create src\main\java\com\epsilon\totalfact\domain\FieldValueHistory.java
   create src\main\java\com\epsilon\totalfact\domain\PrivateNotes.java
   create src\main\java\com\epsilon\totalfact\domain\ProtectedClass.java
   create src\main\java\com\epsilon\totalfact\domain\Derivation.java
    force .yo-rc.json
    force .jhipster\UPC.json
    force .jhipster\UPCRule.json
    force .jhipster\PlatformType.json
    force .jhipster\Platform.json
    force .jhipster\PlatformDE.json
    force .jhipster\PlatformInst.json
    force .jhipster\PlatformList.json
    force .jhipster\Product.json
    force .jhipster\Release.json
    force .jhipster\Dimension.json
    force .jhipster\Category.json
    force .jhipster\Attribute.json
    force .jhipster\Source.json
    force .jhipster\Section.json
    force .jhipster\FieldValue.json
    force .jhipster\Task.json
    force .jhipster\Step.json
    force .jhipster\UPCHistory.json
    force .jhipster\PlatformHistory.json
    force .jhipster\PlatformDEHistory.json
    force .jhipster\PlatformInstHistory.json
    force .jhipster\PlatformListHistory.json
    force .jhipster\FieldValueHistory.json
    force .jhipster\PrivateNotes.json
    force .jhipster\ProtectedClass.json
    force .jhipster\Derivation.json

Changes to package.json were detected.
Skipping package manager install.


If you find JHipster useful consider sponsoring the project https://www.jhipster.tech/sponsors/

Server application generated successfully.

Run your Spring Boot application:
./mvnw (mvnw if using Windows Command Prompt)
Entity UPC generated successfully.
Entity UPCRule generated successfully.
Entity PlatformType generated successfully.
Entity Platform generated successfully.
Entity PlatformDE generated successfully.
Entity PlatformInst generated successfully.
Entity PlatformList generated successfully.
Entity Product generated successfully.
Entity Release generated successfully.
Entity Dimension generated successfully.
Entity Category generated successfully.
Entity Attribute generated successfully.
Entity Source generated successfully.
Entity Section generated successfully.
Entity FieldValue generated successfully.
Entity Task generated successfully.
Entity Step generated successfully.
Entity UPCHistory generated successfully.
Entity PlatformHistory generated successfully.
Entity PlatformDEHistory generated successfully.
Entity PlatformInstHistory generated successfully.
Entity PlatformListHistory generated successfully.
Entity FieldValueHistory generated successfully.
Entity PrivateNotes generated successfully.
Entity ProtectedClass generated successfully.
Entity Derivation generated successfully.
Congratulations, JHipster execution is complete!
Sponsored with ❤️  by @oktadev.
✔ Successfully regenerated application with JHipster 7.8.1 and generator-jhipster-primeng-blueprint7.9.3
     info Removing src/main/resources/config/tls/keystore.p12
     info Removing C:\src\totalfact\src\main\resources\config\tls\keystore.p12
git add -A
warning: LF will be replaced by CRLF in .devcontainer/Dockerfile.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .devcontainer/devcontainer.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .editorconfig.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .gitattributes.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .gitignore.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .husky/pre-commit.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/Attribute.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/Category.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/Derivation.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/Dimension.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/FieldValue.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/FieldValueHistory.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/Platform.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/PlatformDE.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/PlatformDEHistory.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/PlatformHistory.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/PlatformInst.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/PlatformInstHistory.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/PlatformList.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/PlatformListHistory.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/PlatformType.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/PrivateNotes.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/Product.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/ProtectedClass.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/Release.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/Section.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/Source.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/Step.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/Task.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/UPC.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/UPCHistory.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .jhipster/UPCRule.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .lintstagedrc.js.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .mvn/jvm.config.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .mvn/wrapper/maven-wrapper.properties.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .prettierignore.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .prettierrc.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in .yo-rc.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in README.md.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in checkstyle.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in mvnw.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in mvnw.cmd.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in npmw.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in package.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in pom.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in sonar-project.properties.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/docker/app.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/docker/grafana/provisioning/dashboards/JVM.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/docker/grafana/provisioning/dashboards/dashboard.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/docker/grafana/provisioning/datasources/datasource.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/docker/jhipster-control-center.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/docker/keycloak.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/docker/monitoring.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/docker/prometheus/prometheus.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/docker/realm-config/jhipster-realm.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/docker/sonar.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/docker/swagger-editor.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/ApplicationWebXml.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/GeneratedByJHipster.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/TotalFactApp.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/aop/logging/LoggingAspect.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/ApplicationProperties.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/AsyncConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/CacheConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/Constants.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/DatabaseConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/DateTimeFormatConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/JacksonConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/LiquibaseConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/LocaleConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/LoggingAspectConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/LoggingConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/OAuth2Configuration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/OpenApiConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/SecurityConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/StaticResourcesWebConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/WebConfigurer.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/package-info.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/AbstractAuditingEntity.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Attribute.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Authority.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Category.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Derivation.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Dimension.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/FieldValue.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/FieldValueHistory.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Platform.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/PlatformDE.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/PlatformDEHistory.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/PlatformHistory.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/PlatformInst.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/PlatformInstHistory.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/PlatformList.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/PlatformListHistory.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/PlatformType.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/PrivateNotes.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Product.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/ProtectedClass.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Release.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Section.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Source.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Step.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/Task.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/UPC.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/UPCHistory.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/UPCRule.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/User.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/domain/package-info.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/AttributeRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/AuthorityRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/CategoryRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/DerivationRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/DimensionRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/FieldValueHistoryRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/FieldValueRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PlatformDEHistoryRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PlatformDERepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PlatformHistoryRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PlatformInstHistoryRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PlatformInstRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PlatformListHistoryRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PlatformListRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PlatformRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PlatformRepositoryWithBagRelationships.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PlatformRepositoryWithBagRelationshipsImpl.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PlatformTypeRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/PrivateNotesRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/ProductRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/ProtectedClassRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/ReleaseRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/SectionRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/SourceRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/StepRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/TaskRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/UPCHistoryRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/UPCRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/UPCRepositoryWithBagRelationships.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/UPCRepositoryWithBagRelationshipsImpl.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/UPCRuleRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/UserRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/repository/package-info.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/security/AuthoritiesConstants.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/security/SecurityUtils.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/security/SpringSecurityAuditorAware.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/security/oauth2/AudienceValidator.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/security/oauth2/CustomClaimConverter.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/security/oauth2/JwtGrantedAuthorityConverter.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/security/oauth2/OAuthIdpTokenResponseDTO.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/security/package-info.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/AttributeQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/AttributeService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/CategoryQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/CategoryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/DerivationQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/DerivationService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/DimensionQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/DimensionService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/FieldValueHistoryQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/FieldValueHistoryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/FieldValueQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/FieldValueService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformDEHistoryQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformDEHistoryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformDEQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformDEService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformHistoryQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformHistoryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformInstHistoryQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformInstHistoryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformInstQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformInstService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformListHistoryQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformListHistoryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformListQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformListService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformTypeQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PlatformTypeService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PrivateNotesQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/PrivateNotesService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/ProductQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/ProductService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/ProtectedClassQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/ProtectedClassService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/ReleaseQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/ReleaseService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/SectionQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/SectionService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/SourceQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/SourceService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/StepQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/StepService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/TaskQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/TaskService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/UPCHistoryQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/UPCHistoryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/UPCQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/UPCRuleQueryService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/UPCRuleService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/UPCService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/UserService.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/AttributeCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/CategoryCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/DerivationCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/DimensionCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/FieldValueCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/FieldValueHistoryCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/PlatformCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/PlatformDECriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/PlatformDEHistoryCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/PlatformHistoryCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/PlatformInstCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/PlatformInstHistoryCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/PlatformListCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/PlatformListHistoryCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/PlatformTypeCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/PrivateNotesCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/ProductCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/ProtectedClassCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/ReleaseCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/SectionCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/SourceCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/StepCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/TaskCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/UPCCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/UPCHistoryCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/criteria/UPCRuleCriteria.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/dto/AdminUserDTO.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/dto/UserDTO.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/dto/package-info.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/mapper/UserMapper.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/mapper/package-info.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/service/package-info.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/filter/OAuth2RefreshTokensWebFilter.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/AccountResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/AttributeResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/AuthInfoResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/CategoryResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/ClientForwardController.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/DerivationResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/DimensionResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/FieldValueHistoryResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/FieldValueResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/LogoutResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/PlatformDEHistoryResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/PlatformDEResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/PlatformHistoryResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/PlatformInstHistoryResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/PlatformInstResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/PlatformListHistoryResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/PlatformListResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/PlatformResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/PlatformTypeResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/PrivateNotesResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/ProductResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/ProtectedClassResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/PublicUserResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/ReleaseResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/SectionResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/SourceResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/StepResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/TaskResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/UPCHistoryResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/UPCResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/UPCRuleResource.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/errors/BadRequestAlertException.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/errors/ErrorConstants.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/errors/ExceptionTranslator.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/errors/FieldErrorVM.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/errors/package-info.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/package-info.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/vm/ManagedUserVM.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/web/rest/vm/package-info.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/banner.txt.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/application-dev.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/application-prod.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/application-tls.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/application.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172737_added_entity_UPC.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172737_added_entity_constraints_UPC.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172738_added_entity_UPCRule.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172738_added_entity_constraints_UPCRule.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172739_added_entity_PlatformType.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172740_added_entity_Platform.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172740_added_entity_constraints_Platform.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172741_added_entity_PlatformDE.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172741_added_entity_constraints_PlatformDE.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172742_added_entity_PlatformInst.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172742_added_entity_constraints_PlatformInst.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172743_added_entity_PlatformList.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172743_added_entity_constraints_PlatformList.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172744_added_entity_Product.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172744_added_entity_constraints_Product.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172745_added_entity_Release.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172746_added_entity_Dimension.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172747_added_entity_Category.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172747_added_entity_constraints_Category.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172748_added_entity_Attribute.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172749_added_entity_Source.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172750_added_entity_Section.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172751_added_entity_FieldValue.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172751_added_entity_constraints_FieldValue.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172752_added_entity_Task.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172753_added_entity_Step.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172753_added_entity_constraints_Step.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172754_added_entity_UPCHistory.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172755_added_entity_PlatformHistory.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172756_added_entity_PlatformDEHistory.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172757_added_entity_PlatformInstHistory.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172758_added_entity_PlatformListHistory.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220525172759_added_entity_FieldValueHistory.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220614152213_added_entity_PrivateNotes.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220614152213_added_entity_constraints_PrivateNotes.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220614152214_added_entity_ProtectedClass.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/changelog/20220614152215_added_entity_Derivation.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/data/authority.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/data/user.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/data/user_authority.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172737_entity_upc.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172738_entity_upc_rule.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172739_entity_platform_type.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172740_entity_platform.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172741_entity_platform_de.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172742_entity_platform_inst.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172743_entity_platform_list.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172744_entity_product.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172745_entity_release.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172746_entity_dimension.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172747_entity_category.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172748_entity_attribute.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172749_entity_source.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172750_entity_section.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172751_entity_field_value.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172752_entity_task.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172753_entity_step.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172754_entity_upc_history.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172755_entity_platform_history.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172756_entity_platform_de_history.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172757_entity_platform_inst_history.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172758_entity_platform_list_history.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220525172759_entity_field_value_history.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220614152213_entity_private_notes.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220614152214_entity_protected_class.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/fake-data/20220614152215_entity_derivation.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/config/liquibase/master.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/i18n/messages.properties.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/i18n/messages_en.properties.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/logback-spring.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/swagger/api.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/resources/templates/error.html.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/activate.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/configuration.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/error.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/global.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/health.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/home.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/login.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/logs.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/metrics.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/password.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/register.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/reset.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/sessions.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/settings.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/webapp/i18n/en/user-management.json.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/conf/gatling.conf.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/conf/logback.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/AttributeGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/CategoryGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/DerivationGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/DimensionGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/FieldValueGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/FieldValueHistoryGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/PlatformDEGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/PlatformDEHistoryGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/PlatformGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/PlatformHistoryGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/PlatformInstGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/PlatformInstHistoryGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/PlatformListGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/PlatformListHistoryGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/PlatformTypeGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/PrivateNotesGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/ProductGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/ProtectedClassGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/ReleaseGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/SectionGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/SourceGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/StepGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/TaskGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/UPCGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/UPCHistoryGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/gatling/user-files/simulations/UPCRuleGatlingTest.scala.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/IntegrationTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/TechnicalStructureTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/config/AsyncSyncConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/config/EmbeddedSQL.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/config/SpringBootTestClassOrderer.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/config/SqlTestContainer.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/config/StaticResourcesWebConfigurerTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/config/TestContainersSpringContextCustomizerFactory.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/config/TestSecurityConfiguration.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/config/WebConfigurerTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/config/WebConfigurerTestController.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/config/timezone/HibernateTimeZoneIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/AttributeTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/CategoryTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/DerivationTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/DimensionTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/FieldValueHistoryTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/FieldValueTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/PlatformDEHistoryTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/PlatformDETest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/PlatformHistoryTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/PlatformInstHistoryTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/PlatformInstTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/PlatformListHistoryTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/PlatformListTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/PlatformTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/PlatformTypeTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/PrivateNotesTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/ProductTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/ProtectedClassTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/ReleaseTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/SectionTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/SourceTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/StepTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/TaskTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/UPCHistoryTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/UPCRuleTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/domain/UPCTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/repository/timezone/DateTimeWrapper.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/repository/timezone/DateTimeWrapperRepository.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/security/SecurityUtilsUnitTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/security/oauth2/AudienceValidatorTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/security/oauth2/CustomClaimConverterIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/service/UserServiceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/service/mapper/UserMapperTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/test/util/OAuth2TestUtil.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/AccountResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/AttributeResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/CategoryResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/ClientForwardControllerTest.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/DerivationResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/DimensionResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/FieldValueHistoryResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/FieldValueResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/LogoutResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/PlatformDEHistoryResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/PlatformDEResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/PlatformHistoryResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/PlatformInstHistoryResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/PlatformInstResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/PlatformListHistoryResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/PlatformListResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/PlatformResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/PlatformTypeResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/PrivateNotesResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/ProductResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/ProtectedClassResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/PublicUserResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/ReleaseResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/SectionResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/SourceResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/StepResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/TaskResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/TestUtil.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/UPCHistoryResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/UPCResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/UPCRuleResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/UserResourceIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/WithUnauthenticatedMockUser.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/errors/ExceptionTranslatorIT.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/java/com/epsilon/totalfact/web/rest/errors/ExceptionTranslatorTestController.java.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/resources/META-INF/spring.factories.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/resources/config/application-testdev.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/resources/config/application-testprod.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/resources/config/application.yml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/resources/junit-platform.properties.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/resources/logback.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/test/resources/testcontainers.properties.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in src/main/java/com/epsilon/totalfact/config/CRLFLogConverter.java.
The file will have its original line endings in your working directory
git commit -q -m "Generated with JHipster 7.8.1 and generator-jhipster-primeng-blueprint7.9.3 " -a --allow-empty --no-verify
✔ Committed with message "Generated with JHipster 7.8.1 and generator-jhipster-primeng-blueprint7.9.3 "
git checkout -q feature/jhipster_update -f
✔ Checked out branch "feature/jhipster_update"
Merging changes back to feature/jhipster_update...
git merge -q jhipster_upgrade
Auto-merging .yo-rc.json
Auto-merging package.json
CONFLICT (content): Merge conflict in package.json
Auto-merging pom.xml
CONFLICT (content): Merge conflict in pom.xml
Auto-merging src/main/java/com/epsilon/totalfact/TotalFactApp.java
Auto-merging src/main/java/com/epsilon/totalfact/config/SecurityConfiguration.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/Category.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/Dimension.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/Platform.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/PlatformDE.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/PlatformDEHistory.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/PlatformHistory.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/PlatformInst.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/PlatformInstHistory.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/PrivateNotes.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/SourceType.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/domain/SourceType.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/Step.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/UPC.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/UPCHistory.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/UPCRule.java
Auto-merging src/main/java/com/epsilon/totalfact/domain/User.java
Auto-merging src/main/java/com/epsilon/totalfact/repository/PlatformRepository.java
CONFLICT (modify/delete): src/main/java/com/epsilon/totalfact/repository/SourceRepository.java deleted in HEAD and modified in jhipster_upgrade.  Version jhipster_upgrade of src/main/java/com/epsilon/totalfact/repository/SourceRepository.java left in tree.
Auto-merging src/main/java/com/epsilon/totalfact/repository/UPCRepository.java
Auto-merging src/main/java/com/epsilon/totalfact/service/AttributeService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/AttributeService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/CategoryService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/CategoryService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/DerivationService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/DerivationService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/DimensionService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/DimensionService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/FieldValueHistoryService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/FieldValueHistoryService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/FieldValueService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/FieldValueService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/PlatformDEHistoryService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/PlatformDEHistoryService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/PlatformDEService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/PlatformDEService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/PlatformHistoryService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/PlatformHistoryService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/PlatformInstHistoryService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/PlatformInstHistoryService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/PlatformInstService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/PlatformInstService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/PlatformListHistoryService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/PlatformListHistoryService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/PlatformListService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/PlatformListService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/PlatformService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/PlatformService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/PlatformTypeService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/PlatformTypeService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/PrivateNotesService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/PrivateNotesService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/ProductService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/ProductService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/ProtectedClassService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/ProtectedClassService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/ReleaseService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/ReleaseService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/SectionService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/SectionService.java
CONFLICT (modify/delete): src/main/java/com/epsilon/totalfact/service/SourceService.java deleted in HEAD and modified in jhipster_upgrade.  Version jhipster_upgrade of src/main/java/com/epsilon/totalfact/service/SourceService.java left in tree.
Auto-merging src/main/java/com/epsilon/totalfact/service/StepService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/StepService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/TaskService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/TaskService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/UPCHistoryService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/UPCHistoryService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/UPCRuleService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/UPCRuleService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/UPCService.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/UPCService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/UserService.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/AttributeCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/AttributeCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/CategoryCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/CategoryCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/DerivationCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/DerivationCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/DimensionCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/DimensionCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/FieldValueCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/FieldValueCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/FieldValueHistoryCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/FieldValueHistoryCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/PlatformCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/PlatformCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/PlatformDECriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/PlatformDECriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/PlatformDEHistoryCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/PlatformDEHistoryCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/PlatformHistoryCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/PlatformHistoryCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/PlatformInstCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/PlatformInstCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/PlatformInstHistoryCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/PlatformInstHistoryCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/PlatformListCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/PlatformListCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/PlatformListHistoryCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/PlatformListHistoryCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/PlatformTypeCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/PlatformTypeCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/PrivateNotesCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/PrivateNotesCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/ProductCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/ProductCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/ProtectedClassCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/ProtectedClassCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/ReleaseCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/ReleaseCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/SectionCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/SectionCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/SourceCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/StepCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/StepCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/TaskCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/TaskCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/UPCCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/UPCCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/UPCHistoryCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/UPCHistoryCriteria.java
Auto-merging src/main/java/com/epsilon/totalfact/service/criteria/UPCRuleCriteria.java
CONFLICT (content): Merge conflict in src/main/java/com/epsilon/totalfact/service/criteria/UPCRuleCriteria.java
Auto-merging src/main/resources/config/application-prod.yml
Auto-merging src/main/resources/config/application.yml
CONFLICT (content): Merge conflict in src/main/resources/config/application.yml
Auto-merging src/main/resources/config/liquibase/changelog/20220525172737_added_entity_UPC.xml
Auto-merging src/main/resources/config/liquibase/changelog/20220525172737_added_entity_constraints_UPC.xml
Auto-merging src/main/resources/config/liquibase/changelog/20220525172740_added_entity_Platform.xml
Auto-merging src/main/resources/config/liquibase/changelog/20220525172740_added_entity_constraints_Platform.xml
Auto-merging src/main/resources/config/liquibase/changelog/20220525172754_added_entity_UPCHistory.xml
Auto-merging src/main/resources/config/liquibase/changelog/20220722180825_added_entity_SourceType.xml
CONFLICT (content): Merge conflict in src/main/resources/config/liquibase/changelog/20220722180825_added_entity_SourceType.xml
Auto-merging src/main/resources/config/liquibase/master.xml
Auto-merging src/main/resources/logback-spring.xml
CONFLICT (content): Merge conflict in src/main/resources/logback-spring.xml
Auto-merging src/main/resources/swagger/api.yml
CONFLICT (content): Merge conflict in src/main/resources/swagger/api.yml
CONFLICT (modify/delete): src/main/webapp/WEB-INF/web.xml deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/WEB-INF/web.xml left in tree.
CONFLICT (modify/delete): src/main/webapp/app/app.constants.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/app.constants.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/app.module.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/app.module.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/config/pagination.constants.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/config/pagination.constants.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/core/interceptor/error-handler.interceptor.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/core/interceptor/error-handler.interceptor.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/core/request/request-util.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/core/request/request-util.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/dimension/detail/dimension-detail.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/dimension/detail/dimension-detail.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/dimension/dimension.model.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/dimension/dimension.model.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/dimension/list/dimension.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/dimension/list/dimension.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/dimension/list/dimension.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/dimension/list/dimension.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/dimension/update/dimension-update.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/dimension/update/dimension-update.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/dimension/update/dimension-update.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/dimension/update/dimension-update.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/entity-routing.module.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/entity-routing.module.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de-history/detail/platform-de-history-detail.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de-history/detail/platform-de-history-detail.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de-history/list/platform-de-history.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de-history/list/platform-de-history.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de-history/list/platform-de-history.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de-history/list/platform-de-history.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de-history/platform-de-history.model.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de-history/platform-de-history.model.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de-history/service/platform-de-history.service.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de-history/service/platform-de-history.service.spec.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de-history/update/platform-de-history-update.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de-history/update/platform-de-history-update.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de-history/update/platform-de-history-update.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de-history/update/platform-de-history-update.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de/detail/platform-de-detail.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de/detail/platform-de-detail.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de/list/platform-de.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de/list/platform-de.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de/list/platform-de.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de/list/platform-de.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de/platform-de.model.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de/platform-de.model.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de/service/platform-de.service.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de/service/platform-de.service.spec.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de/update/platform-de-update.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de/update/platform-de-update.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-de/update/platform-de-update.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-de/update/platform-de-update.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-history/detail/platform-history-detail.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-history/detail/platform-history-detail.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-history/list/platform-history.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-history/list/platform-history.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-history/list/platform-history.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-history/list/platform-history.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-history/platform-history.model.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-history/platform-history.model.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-history/service/platform-history.service.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-history/service/platform-history.service.spec.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-history/update/platform-history-update.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-history/update/platform-history-update.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-history/update/platform-history-update.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-history/update/platform-history-update.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst-history/detail/platform-inst-history-detail.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst-history/detail/platform-inst-history-detail.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst-history/list/platform-inst-history.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst-history/list/platform-inst-history.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst-history/list/platform-inst-history.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst-history/list/platform-inst-history.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst-history/platform-inst-history.model.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst-history/platform-inst-history.model.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst-history/service/platform-inst-history.service.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst-history/service/platform-inst-history.service.spec.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst-history/update/platform-inst-history-update.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst-history/update/platform-inst-history-update.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst-history/update/platform-inst-history-update.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst-history/update/platform-inst-history-update.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst/detail/platform-inst-detail.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst/detail/platform-inst-detail.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst/list/platform-inst.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst/list/platform-inst.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst/list/platform-inst.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst/list/platform-inst.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst/platform-inst.model.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst/platform-inst.model.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst/service/platform-inst.service.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst/service/platform-inst.service.spec.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst/update/platform-inst-update.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst/update/platform-inst-update.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform-inst/update/platform-inst-update.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform-inst/update/platform-inst-update.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform/detail/platform-detail.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform/detail/platform-detail.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform/list/platform.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform/list/platform.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform/list/platform.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform/list/platform.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform/platform.model.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform/platform.model.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform/service/platform.service.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform/service/platform.service.spec.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform/update/platform-update.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform/update/platform-update.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/platform/update/platform-update.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/platform/update/platform-update.component.ts left in tree.
CONFLICT (rename/delete): src/main/webapp/app/entities/source/list/source.component.html renamed to src/main/webapp/app/entities/source-type/list/source-type.component.html in HEAD, but deleted in jhipster_upgrade.
CONFLICT (modify/delete): src/main/webapp/app/entities/source-type/list/source-type.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/source-type/list/source-type.component.html left in tree.
CONFLICT (rename/delete): src/main/webapp/app/entities/source/list/source.component.spec.ts renamed to src/main/webapp/app/entities/source-type/list/source-type.component.spec.ts in HEAD, but deleted in jhipster_upgrade.
CONFLICT (modify/delete): src/main/webapp/app/entities/source-type/list/source-type.component.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/source-type/list/source-type.component.spec.ts left in tree.
CONFLICT (rename/delete): src/main/webapp/app/entities/source/list/source.component.ts renamed to src/main/webapp/app/entities/source-type/list/source-type.component.ts in HEAD, but deleted in jhipster_upgrade.
CONFLICT (modify/delete): src/main/webapp/app/entities/source-type/list/source-type.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/source-type/list/source-type.component.ts left in tree.
CONFLICT (rename/delete): src/main/webapp/app/entities/source/service/source.service.spec.ts renamed to src/main/webapp/app/entities/source-type/service/source-type.service.spec.ts in HEAD, but deleted in jhipster_upgrade.
CONFLICT (modify/delete): src/main/webapp/app/entities/source-type/service/source-type.service.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/source-type/service/source-type.service.spec.ts left in tree.
CONFLICT (rename/delete): src/main/webapp/app/entities/source/source.model.ts renamed to src/main/webapp/app/entities/source-type/source-type.model.ts in HEAD, but deleted in jhipster_upgrade.
CONFLICT (modify/delete): src/main/webapp/app/entities/source-type/source-type.model.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/source-type/source-type.model.ts left in tree.
CONFLICT (rename/delete): src/main/webapp/app/entities/source/update/source-update.component.html renamed to src/main/webapp/app/entities/source-type/update/source-type-update.component.html in HEAD, but deleted in jhipster_upgrade.
CONFLICT (modify/delete): src/main/webapp/app/entities/source-type/update/source-type-update.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/source-type/update/source-type-update.component.html left in tree.
CONFLICT (rename/delete): src/main/webapp/app/entities/source/update/source-update.component.ts renamed to src/main/webapp/app/entities/source-type/update/source-type-update.component.ts in HEAD, but deleted in jhipster_upgrade.
CONFLICT (modify/delete): src/main/webapp/app/entities/source-type/update/source-type-update.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/source-type/update/source-type-update.component.ts left in tree.
CONFLICT (rename/delete): src/main/webapp/app/entities/source/route/source-routing-resolve.service.spec.ts renamed to src/main/webapp/app/entities/universe/route/universe-routing-resolve.service.spec.ts in HEAD, but deleted in jhipster_upgrade.
CONFLICT (modify/delete): src/main/webapp/app/entities/universe/route/universe-routing-resolve.service.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/universe/route/universe-routing-resolve.service.spec.ts left in tree.
CONFLICT (rename/delete): src/main/webapp/app/entities/source/route/source-routing-resolve.service.ts renamed to src/main/webapp/app/entities/universe/route/universe-routing-resolve.service.ts in HEAD, but deleted in jhipster_upgrade.
CONFLICT (modify/delete): src/main/webapp/app/entities/universe/route/universe-routing-resolve.service.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/universe/route/universe-routing-resolve.service.ts left in tree.
CONFLICT (rename/delete): src/main/webapp/app/entities/source/update/source-update.component.spec.ts renamed to src/main/webapp/app/entities/universe/update/universe-update.component.spec.ts in HEAD, but deleted in jhipster_upgrade.
CONFLICT (modify/delete): src/main/webapp/app/entities/universe/update/universe-update.component.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/universe/update/universe-update.component.spec.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc-history/detail/upc-history-detail.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc-history/detail/upc-history-detail.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc-history/list/upc-history.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc-history/list/upc-history.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc-history/list/upc-history.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc-history/list/upc-history.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc-history/service/upc-history.service.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc-history/service/upc-history.service.spec.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc-history/upc-history.model.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc-history/upc-history.model.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc-history/update/upc-history-update.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc-history/update/upc-history-update.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc-history/update/upc-history-update.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc-history/update/upc-history-update.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc/detail/upc-detail.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc/detail/upc-detail.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc/list/upc.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc/list/upc.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc/list/upc.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc/list/upc.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc/service/upc.service.spec.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc/service/upc.service.spec.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc/upc.model.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc/upc.model.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc/update/upc-update.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc/update/upc-update.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/entities/upc/update/upc-update.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/entities/upc/update/upc-update.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/home/home.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/home/home.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/home/home.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/home/home.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/home/home.route.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/home/home.route.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/layouts/footer/footer.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/layouts/footer/footer.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/layouts/footer/footer.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/layouts/footer/footer.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/layouts/main/main.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/layouts/main/main.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/layouts/main/main.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/layouts/main/main.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/layouts/navbar/navbar.component.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/layouts/navbar/navbar.component.html left in tree.
CONFLICT (modify/delete): src/main/webapp/app/layouts/navbar/navbar.component.scss deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/layouts/navbar/navbar.component.scss left in tree.
CONFLICT (modify/delete): src/main/webapp/app/layouts/navbar/navbar.component.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/layouts/navbar/navbar.component.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/layouts/profiles/profile.service.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/layouts/profiles/profile.service.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/login/login.service.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/login/login.service.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/login/logout.model.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/login/logout.model.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/shared/primeng-common.module.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/shared/primeng-common.module.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/app/shared/shared.module.ts deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/app/shared/shared.module.ts left in tree.
CONFLICT (modify/delete): src/main/webapp/content/scss/global.scss deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/content/scss/global.scss left in tree.
CONFLICT (modify/delete): src/main/webapp/content/scss/vendor.scss deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/content/scss/vendor.scss left in tree.
CONFLICT (modify/delete): src/main/webapp/favicon.ico deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/favicon.ico left in tree.
CONFLICT (modify/delete): src/main/webapp/i18n/en/dimension.json deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/i18n/en/dimension.json left in tree.
Auto-merging src/main/webapp/i18n/en/global.json
CONFLICT (content): Merge conflict in src/main/webapp/i18n/en/global.json
CONFLICT (modify/delete): src/main/webapp/i18n/en/platform.json deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/i18n/en/platform.json left in tree.
CONFLICT (modify/delete): src/main/webapp/i18n/en/platformDE.json deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/i18n/en/platformDE.json left in tree.
CONFLICT (modify/delete): src/main/webapp/i18n/en/platformDEHistory.json deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/i18n/en/platformDEHistory.json left in tree.
CONFLICT (modify/delete): src/main/webapp/i18n/en/platformHistory.json deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/i18n/en/platformHistory.json left in tree.
CONFLICT (modify/delete): src/main/webapp/i18n/en/platformInst.json deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/i18n/en/platformInst.json left in tree.
CONFLICT (modify/delete): src/main/webapp/i18n/en/platformInstHistory.json deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/i18n/en/platformInstHistory.json left in tree.
CONFLICT (modify/delete): src/main/webapp/i18n/en/uPC.json deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/i18n/en/uPC.json left in tree.
CONFLICT (modify/delete): src/main/webapp/i18n/en/uPCHistory.json deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/i18n/en/uPCHistory.json left in tree.
CONFLICT (modify/delete): src/main/webapp/index.html deleted in jhipster_upgrade and modified in HEAD.  Version HEAD of src/main/webapp/index.html left in tree.
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/CategoryResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/DerivationResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/DimensionResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/FieldValueHistoryResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/FieldValueResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/PlatformDEHistoryResourceIT.java
CONFLICT (content): Merge conflict in src/test/java/com/epsilon/totalfact/web/rest/PlatformDEHistoryResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/PlatformDEResourceIT.java
CONFLICT (content): Merge conflict in src/test/java/com/epsilon/totalfact/web/rest/PlatformDEResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/PlatformHistoryResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/PlatformInstHistoryResourceIT.java
CONFLICT (content): Merge conflict in src/test/java/com/epsilon/totalfact/web/rest/PlatformInstHistoryResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/PlatformInstResourceIT.java
CONFLICT (content): Merge conflict in src/test/java/com/epsilon/totalfact/web/rest/PlatformInstResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/PlatformListHistoryResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/PlatformListResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/PlatformResourceIT.java
CONFLICT (content): Merge conflict in src/test/java/com/epsilon/totalfact/web/rest/PlatformResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/PrivateNotesResourceIT.java
CONFLICT (content): Merge conflict in src/test/java/com/epsilon/totalfact/web/rest/PrivateNotesResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/ProductResourceIT.java
CONFLICT (modify/delete): src/test/java/com/epsilon/totalfact/web/rest/SourceResourceIT.java deleted in HEAD and modified in jhipster_upgrade.  Version jhipster_upgrade of src/test/java/com/epsilon/totalfact/web/rest/SourceResourceIT.java left in tree.
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/StepResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/UPCHistoryResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/UPCResourceIT.java
CONFLICT (content): Merge conflict in src/test/java/com/epsilon/totalfact/web/rest/UPCResourceIT.java
Auto-merging src/test/java/com/epsilon/totalfact/web/rest/UPCRuleResourceIT.java
CONFLICT (content): Merge conflict in src/test/java/com/epsilon/totalfact/web/rest/UPCRuleResourceIT.java
Automatic merge failed; fix conflicts and then commit the result.
✔ Merge done!
git diff --name-only --diff-filter=U package.json
package.json
WARNING! There are conflicts in package.json, please fix them and then run npm install
✔ Start your Webpack development server with:
npm start


No change to package.json was detected. No package manager install will be executed.
git diff --name-only --diff-filter=U
package.json
pom.xml
src/main/java/com/epsilon/totalfact/domain/SourceType.java
src/main/java/com/epsilon/totalfact/repository/SourceRepository.java
src/main/java/com/epsilon/totalfact/service/AttributeService.java
src/main/java/com/epsilon/totalfact/service/CategoryService.java
src/main/java/com/epsilon/totalfact/service/DerivationService.java
src/main/java/com/epsilon/totalfact/service/DimensionService.java
src/main/java/com/epsilon/totalfact/service/FieldValueHistoryService.java
src/main/java/com/epsilon/totalfact/service/FieldValueService.java
src/main/java/com/epsilon/totalfact/service/PlatformDEHistoryService.java
src/main/java/com/epsilon/totalfact/service/PlatformDEService.java
src/main/java/com/epsilon/totalfact/service/PlatformHistoryService.java
src/main/java/com/epsilon/totalfact/service/PlatformInstHistoryService.java
src/main/java/com/epsilon/totalfact/service/PlatformInstService.java
src/main/java/com/epsilon/totalfact/service/PlatformListHistoryService.java
src/main/java/com/epsilon/totalfact/service/PlatformListService.java
src/main/java/com/epsilon/totalfact/service/PlatformService.java
src/main/java/com/epsilon/totalfact/service/PlatformTypeService.java
src/main/java/com/epsilon/totalfact/service/PrivateNotesService.java
src/main/java/com/epsilon/totalfact/service/ProductService.java
src/main/java/com/epsilon/totalfact/service/ProtectedClassService.java
src/main/java/com/epsilon/totalfact/service/ReleaseService.java
src/main/java/com/epsilon/totalfact/service/SectionService.java
src/main/java/com/epsilon/totalfact/service/SourceService.java
src/main/java/com/epsilon/totalfact/service/StepService.java
src/main/java/com/epsilon/totalfact/service/TaskService.java
src/main/java/com/epsilon/totalfact/service/UPCHistoryService.java
src/main/java/com/epsilon/totalfact/service/UPCRuleService.java
src/main/java/com/epsilon/totalfact/service/UPCService.java
src/main/java/com/epsilon/totalfact/service/criteria/AttributeCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/CategoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/DerivationCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/DimensionCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/FieldValueCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/FieldValueHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformDECriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformDEHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformInstCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformInstHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformListCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformListHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformTypeCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PrivateNotesCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/ProductCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/ProtectedClassCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/ReleaseCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/SectionCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/StepCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/TaskCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/UPCCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/UPCHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/UPCRuleCriteria.java
src/main/resources/config/application.yml
src/main/resources/config/liquibase/changelog/20220722180825_added_entity_SourceType.xml
src/main/resources/logback-spring.xml
src/main/resources/swagger/api.yml
src/main/webapp/WEB-INF/web.xml
src/main/webapp/app/app.constants.ts
src/main/webapp/app/app.module.ts
src/main/webapp/app/config/pagination.constants.ts
src/main/webapp/app/core/interceptor/error-handler.interceptor.ts
src/main/webapp/app/core/request/request-util.ts
src/main/webapp/app/entities/dimension/detail/dimension-detail.component.html
src/main/webapp/app/entities/dimension/dimension.model.ts
src/main/webapp/app/entities/dimension/list/dimension.component.html
src/main/webapp/app/entities/dimension/list/dimension.component.ts
src/main/webapp/app/entities/dimension/update/dimension-update.component.html
src/main/webapp/app/entities/dimension/update/dimension-update.component.ts
src/main/webapp/app/entities/entity-routing.module.ts
src/main/webapp/app/entities/platform-de-history/detail/platform-de-history-detail.component.html
src/main/webapp/app/entities/platform-de-history/list/platform-de-history.component.html
src/main/webapp/app/entities/platform-de-history/list/platform-de-history.component.ts
src/main/webapp/app/entities/platform-de-history/platform-de-history.model.ts
src/main/webapp/app/entities/platform-de-history/service/platform-de-history.service.spec.ts
src/main/webapp/app/entities/platform-de-history/update/platform-de-history-update.component.html
src/main/webapp/app/entities/platform-de-history/update/platform-de-history-update.component.ts
src/main/webapp/app/entities/platform-de/detail/platform-de-detail.component.html
src/main/webapp/app/entities/platform-de/list/platform-de.component.html
src/main/webapp/app/entities/platform-de/list/platform-de.component.ts
src/main/webapp/app/entities/platform-de/platform-de.model.ts
src/main/webapp/app/entities/platform-de/service/platform-de.service.spec.ts
src/main/webapp/app/entities/platform-de/update/platform-de-update.component.html
src/main/webapp/app/entities/platform-de/update/platform-de-update.component.ts
src/main/webapp/app/entities/platform-history/detail/platform-history-detail.component.html
src/main/webapp/app/entities/platform-history/list/platform-history.component.html
src/main/webapp/app/entities/platform-history/list/platform-history.component.ts
src/main/webapp/app/entities/platform-history/platform-history.model.ts
src/main/webapp/app/entities/platform-history/service/platform-history.service.spec.ts
src/main/webapp/app/entities/platform-history/update/platform-history-update.component.html
src/main/webapp/app/entities/platform-history/update/platform-history-update.component.ts
src/main/webapp/app/entities/platform-inst-history/detail/platform-inst-history-detail.component.html
src/main/webapp/app/entities/platform-inst-history/list/platform-inst-history.component.html
src/main/webapp/app/entities/platform-inst-history/list/platform-inst-history.component.ts
src/main/webapp/app/entities/platform-inst-history/platform-inst-history.model.ts
src/main/webapp/app/entities/platform-inst-history/service/platform-inst-history.service.spec.ts
src/main/webapp/app/entities/platform-inst-history/update/platform-inst-history-update.component.html
src/main/webapp/app/entities/platform-inst-history/update/platform-inst-history-update.component.ts
src/main/webapp/app/entities/platform-inst/detail/platform-inst-detail.component.html
src/main/webapp/app/entities/platform-inst/list/platform-inst.component.html
src/main/webapp/app/entities/platform-inst/list/platform-inst.component.ts
src/main/webapp/app/entities/platform-inst/platform-inst.model.ts
src/main/webapp/app/entities/platform-inst/service/platform-inst.service.spec.ts
src/main/webapp/app/entities/platform-inst/update/platform-inst-update.component.html
src/main/webapp/app/entities/platform-inst/update/platform-inst-update.component.ts
src/main/webapp/app/entities/platform/detail/platform-detail.component.html
src/main/webapp/app/entities/platform/list/platform.component.html
src/main/webapp/app/entities/platform/list/platform.component.ts
src/main/webapp/app/entities/platform/platform.model.ts
src/main/webapp/app/entities/platform/service/platform.service.spec.ts
src/main/webapp/app/entities/platform/update/platform-update.component.html
src/main/webapp/app/entities/platform/update/platform-update.component.ts
src/main/webapp/app/entities/source-type/list/source-type.component.html
src/main/webapp/app/entities/source-type/list/source-type.component.spec.ts
src/main/webapp/app/entities/source-type/list/source-type.component.ts
src/main/webapp/app/entities/source-type/service/source-type.service.spec.ts
src/main/webapp/app/entities/source-type/source-type.model.ts
src/main/webapp/app/entities/source-type/update/source-type-update.component.html
src/main/webapp/app/entities/source-type/update/source-type-update.component.ts
src/main/webapp/app/entities/universe/route/universe-routing-resolve.service.spec.ts
src/main/webapp/app/entities/universe/route/universe-routing-resolve.service.ts
src/main/webapp/app/entities/universe/update/universe-update.component.spec.ts
src/main/webapp/app/entities/upc-history/detail/upc-history-detail.component.html
src/main/webapp/app/entities/upc-history/list/upc-history.component.html
src/main/webapp/app/entities/upc-history/list/upc-history.component.ts
src/main/webapp/app/entities/upc-history/service/upc-history.service.spec.ts
src/main/webapp/app/entities/upc-history/upc-history.model.ts
src/main/webapp/app/entities/upc-history/update/upc-history-update.component.html
src/main/webapp/app/entities/upc-history/update/upc-history-update.component.ts
src/main/webapp/app/entities/upc/detail/upc-detail.component.html
src/main/webapp/app/entities/upc/list/upc.component.html
src/main/webapp/app/entities/upc/list/upc.component.ts
src/main/webapp/app/entities/upc/service/upc.service.spec.ts
src/main/webapp/app/entities/upc/upc.model.ts
src/main/webapp/app/entities/upc/update/upc-update.component.html
src/main/webapp/app/entities/upc/update/upc-update.component.ts
src/main/webapp/app/home/home.component.html
src/main/webapp/app/home/home.component.ts
src/main/webapp/app/home/home.route.ts
src/main/webapp/app/layouts/footer/footer.component.html
src/main/webapp/app/layouts/footer/footer.component.ts
src/main/webapp/app/layouts/main/main.component.html
src/main/webapp/app/layouts/main/main.component.ts
src/main/webapp/app/layouts/navbar/navbar.component.html
src/main/webapp/app/layouts/navbar/navbar.component.scss
src/main/webapp/app/layouts/navbar/navbar.component.ts
src/main/webapp/app/layouts/profiles/profile.service.ts
src/main/webapp/app/login/login.service.ts
src/main/webapp/app/login/logout.model.ts
src/main/webapp/app/shared/primeng-common.module.ts
src/main/webapp/app/shared/shared.module.ts
src/main/webapp/content/scss/global.scss
src/main/webapp/content/scss/vendor.scss
src/main/webapp/favicon.ico
src/main/webapp/i18n/en/dimension.json
src/main/webapp/i18n/en/global.json
src/main/webapp/i18n/en/platform.json
src/main/webapp/i18n/en/platformDE.json
src/main/webapp/i18n/en/platformDEHistory.json
src/main/webapp/i18n/en/platformHistory.json
src/main/webapp/i18n/en/platformInst.json
src/main/webapp/i18n/en/platformInstHistory.json
src/main/webapp/i18n/en/uPC.json
src/main/webapp/i18n/en/uPCHistory.json
src/main/webapp/index.html
src/test/java/com/epsilon/totalfact/web/rest/PlatformDEHistoryResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/PlatformDEResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/PlatformInstHistoryResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/PlatformInstResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/PlatformResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/PrivateNotesResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/SourceResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/UPCResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/UPCRuleResourceIT.java
✔ Upgraded successfully.
WARNING! Please fix conflicts listed below and commit!
package.json
pom.xml
src/main/java/com/epsilon/totalfact/domain/SourceType.java
src/main/java/com/epsilon/totalfact/repository/SourceRepository.java
src/main/java/com/epsilon/totalfact/service/AttributeService.java
src/main/java/com/epsilon/totalfact/service/CategoryService.java
src/main/java/com/epsilon/totalfact/service/DerivationService.java
src/main/java/com/epsilon/totalfact/service/DimensionService.java
src/main/java/com/epsilon/totalfact/service/FieldValueHistoryService.java
src/main/java/com/epsilon/totalfact/service/FieldValueService.java
src/main/java/com/epsilon/totalfact/service/PlatformDEHistoryService.java
src/main/java/com/epsilon/totalfact/service/PlatformDEService.java
src/main/java/com/epsilon/totalfact/service/PlatformHistoryService.java
src/main/java/com/epsilon/totalfact/service/PlatformInstHistoryService.java
src/main/java/com/epsilon/totalfact/service/PlatformInstService.java
src/main/java/com/epsilon/totalfact/service/PlatformListHistoryService.java
src/main/java/com/epsilon/totalfact/service/PlatformListService.java
src/main/java/com/epsilon/totalfact/service/PlatformService.java
src/main/java/com/epsilon/totalfact/service/PlatformTypeService.java
src/main/java/com/epsilon/totalfact/service/PrivateNotesService.java
src/main/java/com/epsilon/totalfact/service/ProductService.java
src/main/java/com/epsilon/totalfact/service/ProtectedClassService.java
src/main/java/com/epsilon/totalfact/service/ReleaseService.java
src/main/java/com/epsilon/totalfact/service/SectionService.java
src/main/java/com/epsilon/totalfact/service/SourceService.java
src/main/java/com/epsilon/totalfact/service/StepService.java
src/main/java/com/epsilon/totalfact/service/TaskService.java
src/main/java/com/epsilon/totalfact/service/UPCHistoryService.java
src/main/java/com/epsilon/totalfact/service/UPCRuleService.java
src/main/java/com/epsilon/totalfact/service/UPCService.java
src/main/java/com/epsilon/totalfact/service/criteria/AttributeCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/CategoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/DerivationCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/DimensionCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/FieldValueCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/FieldValueHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformDECriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformDEHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformInstCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformInstHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformListCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformListHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PlatformTypeCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/PrivateNotesCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/ProductCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/ProtectedClassCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/ReleaseCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/SectionCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/StepCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/TaskCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/UPCCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/UPCHistoryCriteria.java
src/main/java/com/epsilon/totalfact/service/criteria/UPCRuleCriteria.java
src/main/resources/config/application.yml
src/main/resources/config/liquibase/changelog/20220722180825_added_entity_SourceType.xml
src/main/resources/logback-spring.xml
src/main/resources/swagger/api.yml
src/main/webapp/WEB-INF/web.xml
src/main/webapp/app/app.constants.ts
src/main/webapp/app/app.module.ts
src/main/webapp/app/config/pagination.constants.ts
src/main/webapp/app/core/interceptor/error-handler.interceptor.ts
src/main/webapp/app/core/request/request-util.ts
src/main/webapp/app/entities/dimension/detail/dimension-detail.component.html
src/main/webapp/app/entities/dimension/dimension.model.ts
src/main/webapp/app/entities/dimension/list/dimension.component.html
src/main/webapp/app/entities/dimension/list/dimension.component.ts
src/main/webapp/app/entities/dimension/update/dimension-update.component.html
src/main/webapp/app/entities/dimension/update/dimension-update.component.ts
src/main/webapp/app/entities/entity-routing.module.ts
src/main/webapp/app/entities/platform-de-history/detail/platform-de-history-detail.component.html
src/main/webapp/app/entities/platform-de-history/list/platform-de-history.component.html
src/main/webapp/app/entities/platform-de-history/list/platform-de-history.component.ts
src/main/webapp/app/entities/platform-de-history/platform-de-history.model.ts
src/main/webapp/app/entities/platform-de-history/service/platform-de-history.service.spec.ts
src/main/webapp/app/entities/platform-de-history/update/platform-de-history-update.component.html
src/main/webapp/app/entities/platform-de-history/update/platform-de-history-update.component.ts
src/main/webapp/app/entities/platform-de/detail/platform-de-detail.component.html
src/main/webapp/app/entities/platform-de/list/platform-de.component.html
src/main/webapp/app/entities/platform-de/list/platform-de.component.ts
src/main/webapp/app/entities/platform-de/platform-de.model.ts
src/main/webapp/app/entities/platform-de/service/platform-de.service.spec.ts
src/main/webapp/app/entities/platform-de/update/platform-de-update.component.html
src/main/webapp/app/entities/platform-de/update/platform-de-update.component.ts
src/main/webapp/app/entities/platform-history/detail/platform-history-detail.component.html
src/main/webapp/app/entities/platform-history/list/platform-history.component.html
src/main/webapp/app/entities/platform-history/list/platform-history.component.ts
src/main/webapp/app/entities/platform-history/platform-history.model.ts
src/main/webapp/app/entities/platform-history/service/platform-history.service.spec.ts
src/main/webapp/app/entities/platform-history/update/platform-history-update.component.html
src/main/webapp/app/entities/platform-history/update/platform-history-update.component.ts
src/main/webapp/app/entities/platform-inst-history/detail/platform-inst-history-detail.component.html
src/main/webapp/app/entities/platform-inst-history/list/platform-inst-history.component.html
src/main/webapp/app/entities/platform-inst-history/list/platform-inst-history.component.ts
src/main/webapp/app/entities/platform-inst-history/platform-inst-history.model.ts
src/main/webapp/app/entities/platform-inst-history/service/platform-inst-history.service.spec.ts
src/main/webapp/app/entities/platform-inst-history/update/platform-inst-history-update.component.html
src/main/webapp/app/entities/platform-inst-history/update/platform-inst-history-update.component.ts
src/main/webapp/app/entities/platform-inst/detail/platform-inst-detail.component.html
src/main/webapp/app/entities/platform-inst/list/platform-inst.component.html
src/main/webapp/app/entities/platform-inst/list/platform-inst.component.ts
src/main/webapp/app/entities/platform-inst/platform-inst.model.ts
src/main/webapp/app/entities/platform-inst/service/platform-inst.service.spec.ts
src/main/webapp/app/entities/platform-inst/update/platform-inst-update.component.html
src/main/webapp/app/entities/platform-inst/update/platform-inst-update.component.ts
src/main/webapp/app/entities/platform/detail/platform-detail.component.html
src/main/webapp/app/entities/platform/list/platform.component.html
src/main/webapp/app/entities/platform/list/platform.component.ts
src/main/webapp/app/entities/platform/platform.model.ts
src/main/webapp/app/entities/platform/service/platform.service.spec.ts
src/main/webapp/app/entities/platform/update/platform-update.component.html
src/main/webapp/app/entities/platform/update/platform-update.component.ts
src/main/webapp/app/entities/source-type/list/source-type.component.html
src/main/webapp/app/entities/source-type/list/source-type.component.spec.ts
src/main/webapp/app/entities/source-type/list/source-type.component.ts
src/main/webapp/app/entities/source-type/service/source-type.service.spec.ts
src/main/webapp/app/entities/source-type/source-type.model.ts
src/main/webapp/app/entities/source-type/update/source-type-update.component.html
src/main/webapp/app/entities/source-type/update/source-type-update.component.ts
src/main/webapp/app/entities/universe/route/universe-routing-resolve.service.spec.ts
src/main/webapp/app/entities/universe/route/universe-routing-resolve.service.ts
src/main/webapp/app/entities/universe/update/universe-update.component.spec.ts
src/main/webapp/app/entities/upc-history/detail/upc-history-detail.component.html
src/main/webapp/app/entities/upc-history/list/upc-history.component.html
src/main/webapp/app/entities/upc-history/list/upc-history.component.ts
src/main/webapp/app/entities/upc-history/service/upc-history.service.spec.ts
src/main/webapp/app/entities/upc-history/upc-history.model.ts
src/main/webapp/app/entities/upc-history/update/upc-history-update.component.html
src/main/webapp/app/entities/upc-history/update/upc-history-update.component.ts
src/main/webapp/app/entities/upc/detail/upc-detail.component.html
src/main/webapp/app/entities/upc/list/upc.component.html
src/main/webapp/app/entities/upc/list/upc.component.ts
src/main/webapp/app/entities/upc/service/upc.service.spec.ts
src/main/webapp/app/entities/upc/upc.model.ts
src/main/webapp/app/entities/upc/update/upc-update.component.html
src/main/webapp/app/entities/upc/update/upc-update.component.ts
src/main/webapp/app/home/home.component.html
src/main/webapp/app/home/home.component.ts
src/main/webapp/app/home/home.route.ts
src/main/webapp/app/layouts/footer/footer.component.html
src/main/webapp/app/layouts/footer/footer.component.ts
src/main/webapp/app/layouts/main/main.component.html
src/main/webapp/app/layouts/main/main.component.ts
src/main/webapp/app/layouts/navbar/navbar.component.html
src/main/webapp/app/layouts/navbar/navbar.component.scss
src/main/webapp/app/layouts/navbar/navbar.component.ts
src/main/webapp/app/layouts/profiles/profile.service.ts
src/main/webapp/app/login/login.service.ts
src/main/webapp/app/login/logout.model.ts
src/main/webapp/app/shared/primeng-common.module.ts
src/main/webapp/app/shared/shared.module.ts
src/main/webapp/content/scss/global.scss
src/main/webapp/content/scss/vendor.scss
src/main/webapp/favicon.ico
src/main/webapp/i18n/en/dimension.json
src/main/webapp/i18n/en/global.json
src/main/webapp/i18n/en/platform.json
src/main/webapp/i18n/en/platformDE.json
src/main/webapp/i18n/en/platformDEHistory.json
src/main/webapp/i18n/en/platformHistory.json
src/main/webapp/i18n/en/platformInst.json
src/main/webapp/i18n/en/platformInstHistory.json
src/main/webapp/i18n/en/uPC.json
src/main/webapp/i18n/en/uPCHistory.json
src/main/webapp/index.html
src/test/java/com/epsilon/totalfact/web/rest/PlatformDEHistoryResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/PlatformDEResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/PlatformInstHistoryResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/PlatformInstResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/PlatformResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/PrivateNotesResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/SourceResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/UPCResourceIT.java
src/test/java/com/epsilon/totalfact/web/rest/UPCRuleResourceIT.java

Congratulations, JHipster execution is complete!
Sponsored with ❤️  by @oktadev.```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants