├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .idea ├── codeStyles │ └── codeStyleConfig.xml ├── dictionaries │ ├── arobirosa.xml │ └── hybris_integration.xml ├── encodings.xml ├── fileTemplates │ └── includes │ │ └── File Header.java ├── hybrisDeveloperSpecificProjectSettings.xml ├── hybrisProjectSettings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── libraries │ ├── Backoffice_Library.xml │ └── Platform_Bootstrap.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ └── Remote_debug.xml └── vcs.xml ├── .sdkmanrc ├── KanbanTickets.ods ├── LICENSE ├── README.md ├── eclipse_settings └── Areco Coding Conventions.xml ├── hybris ├── bin │ └── custom │ │ ├── arecoDeploymentScriptsExamples │ │ ├── .classpath │ │ ├── .externalToolBuilders │ │ │ └── HybrisCodeGeneration.launch │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.springframework.ide.eclipse.beans.core.prefs │ │ │ └── org.springframework.ide.eclipse.core.prefs │ │ ├── .springBeans │ │ ├── LICENSE.txt │ │ ├── arecoDeploymentScriptsExamples.iml │ │ ├── buildcallbacks.xml │ │ ├── extensioninfo.xml │ │ ├── hmc │ │ │ ├── jsp │ │ │ │ └── ext │ │ │ │ │ └── arecoDeploymentScriptsExamples │ │ │ │ │ ├── css │ │ │ │ │ └── dummy.txt │ │ │ │ │ ├── images │ │ │ │ │ └── dummy.txt │ │ │ │ │ └── js │ │ │ │ │ └── dummy.txt │ │ │ ├── resources │ │ │ │ ├── hmc.xml │ │ │ │ └── org │ │ │ │ │ └── areco │ │ │ │ │ └── ecommerce │ │ │ │ │ └── deploymentscripts │ │ │ │ │ └── examples │ │ │ │ │ └── hmc │ │ │ │ │ ├── locales_de.properties │ │ │ │ │ └── locales_en.properties │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── areco │ │ │ │ └── ecommerce │ │ │ │ └── deploymentscripts │ │ │ │ └── examples │ │ │ │ └── hmc │ │ │ │ └── ArecoDeploymentScriptsExamplesHMCExtension.java │ │ ├── project.properties │ │ ├── resources │ │ │ ├── arecoDeploymentScriptsExamples-items.xml │ │ │ ├── arecoDeploymentScriptsExamples-spring.xml │ │ │ ├── arecoDeploymentScriptsExamples.build.number │ │ │ ├── arecoDeploymentScriptsExamples │ │ │ │ └── arecoDeploymentScriptsExamples-hmctestclasses.xml │ │ │ ├── init-deployment-scripts │ │ │ │ └── 20140807_TICKET_INITIAL_CONFIGURATION │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ └── description.txt │ │ │ ├── localization │ │ │ │ ├── arecoDeploymentScriptsExamples-locales_de.properties │ │ │ │ ├── arecoDeploymentScriptsExamples-locales_en.properties │ │ │ │ ├── arecoDeploymentScriptsExamples-locales_fr.properties │ │ │ │ ├── arecoDeploymentScriptsExamples-locales_ja.properties │ │ │ │ ├── arecoDeploymentScriptsExamples-locales_pt.properties │ │ │ │ └── arecoDeploymentScriptsExamples-locales_zh.properties │ │ │ └── update-deployment-scripts │ │ │ │ ├── 20140601_TICKET_ADD_CRONJOBS_01 │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ └── description.txt │ │ │ │ ├── 20140608_TICKET_CASE_INSENSITIVE_FILE_SORTING_02 │ │ │ │ ├── A_new_cronjobs.impex │ │ │ │ ├── b_remove_sample_cronjobs.impex │ │ │ │ └── description.txt │ │ │ │ ├── 20140609_TICKET_USE_SQL_STATEMENT_03 │ │ │ │ ├── 01_insert_historical_prices.impex │ │ │ │ ├── 02_remove_all_historical_prices.sql │ │ │ │ └── description.txt │ │ │ │ ├── 20140814_01_TICKET_DEV_CRONJOBS │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ ├── description.txt │ │ │ │ └── development.conf │ │ │ │ ├── 20140814_02_TICKET_PRODUCTION_CRONJOBS │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ ├── description.txt │ │ │ │ └── productionWithOutIntegration.conf │ │ │ │ ├── 20140814_03_TICKET_INTEGRATION_TESTS_CRONJOBS │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ ├── description.txt │ │ │ │ └── integrationTests.conf │ │ │ │ ├── 20141006_RUN_CRONJOB_WITH_BEANSHELL │ │ │ │ ├── 00_create_dummy_cronjobs.impex │ │ │ │ ├── 01_run_cronjob.beanshell │ │ │ │ ├── 02_remove_dummy_cronjobs.impex │ │ │ │ └── description.txt │ │ │ │ ├── 20150108_RUN_SQL_AND_CHECK_CACHE │ │ │ │ ├── 01_remove_dummy_environment.beanshell │ │ │ │ ├── 02_create_dummy_environment.beanshell │ │ │ │ ├── 03_update_deployment_environment.sql │ │ │ │ ├── 04_test_environment_update.beanshell │ │ │ │ └── 05_remove_dummy_environment.beanshell │ │ │ │ ├── 20150317_SQL_INSERT │ │ │ │ └── 01_insert_number_series.sql │ │ │ │ ├── 20181123_REMOVE_DYNAMIC_ATTRIBUTE_HANDLE │ │ │ │ └── 01-remove-dynamic-attribute-handle.beanshell │ │ │ │ └── 20200404_59_RELOAD_COCKPIT_CONFIGURATION │ │ │ │ └── 01_reload_cms_conf_from_admincockpit.groovy │ │ ├── ruleset.xml │ │ ├── src │ │ │ └── org │ │ │ │ └── areco │ │ │ │ └── ecommerce │ │ │ │ └── deploymentscripts │ │ │ │ └── examples │ │ │ │ ├── constants │ │ │ │ └── ArecoDeploymentScriptsExamplesConstants.java │ │ │ │ └── jobs │ │ │ │ └── DummyJob.java │ │ └── web │ │ │ ├── src │ │ │ └── org │ │ │ │ └── areco │ │ │ │ └── ecommerce │ │ │ │ └── deploymentscripts │ │ │ │ └── examples │ │ │ │ └── dummy.txt │ │ │ └── webroot │ │ │ ├── WEB-INF │ │ │ ├── arecoDeploymentScriptsExamples-web-spring.xml │ │ │ ├── ibm-web-ext.xmi │ │ │ └── web.xml │ │ │ └── index.jsp │ │ ├── arecoDeploymentScriptsManager │ │ ├── .classpath │ │ ├── .externalToolBuilders │ │ │ └── HybrisCodeGeneration.launch │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.springframework.ide.eclipse.beans.core.prefs │ │ │ └── org.springframework.ide.eclipse.core.prefs │ │ ├── .springBeans │ │ ├── .springBeans.new │ │ ├── LICENSE.txt │ │ ├── arecoDeploymentScriptsManager.iml │ │ ├── buildcallbacks.xml │ │ ├── extensioninfo.xml │ │ ├── project.properties │ │ ├── resources │ │ │ ├── arecoDeploymentScriptsManager-items.xml │ │ │ ├── arecoDeploymentScriptsManager-spring.xml │ │ │ ├── arecoDeploymentScriptsManager.build.number │ │ │ ├── initial-configuration-de.impex │ │ │ ├── initial-configuration.impex │ │ │ ├── localization │ │ │ │ ├── arecoDeploymentScriptsManager-locales_de.properties │ │ │ │ ├── arecoDeploymentScriptsManager-locales_en.properties │ │ │ │ └── arecoDeploymentScriptsManager-locales_es.properties │ │ │ └── test │ │ │ │ ├── ant-scripts-starter-error-handling │ │ │ │ ├── no-scripts │ │ │ │ │ └── dummy.txt │ │ │ │ ├── script-requiring-admin │ │ │ │ │ └── 20230216_18_REQUIRES_ADMIN │ │ │ │ │ │ └── 01-check-if-admin-user.groovy │ │ │ │ ├── script-with-error │ │ │ │ │ ├── 20141002_PENDING_SCRIPT_CORRECT │ │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ │ └── 20141003_PENDING_SCRIPT │ │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ └── script-without-error │ │ │ │ │ ├── 20141002_PENDING_SCRIPT_CORRECT │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ │ └── 20141003_PENDING_SCRIPT │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ ├── context-logging │ │ │ │ └── update-deployment-scripts │ │ │ │ │ └── 20150126_TICKET_USE_BEANSHELL_TO_RELOAD_CMS_CONF │ │ │ │ │ └── 01_return_ok.beanshell │ │ │ │ ├── environmentnameswithspaces │ │ │ │ └── 20150801_TICKET_DEV_CRONJOBS │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ └── development.conf │ │ │ │ ├── essential-data-creator │ │ │ │ ├── init-deployment-scripts │ │ │ │ │ └── 20141005_RELOAD_CMS_CONF │ │ │ │ │ │ └── 01_return_ok.beanshell │ │ │ │ └── update-deployment-scripts │ │ │ │ │ └── 20141004_RELOAD_CMS_CONF │ │ │ │ │ └── 01_return_ok.beanshell │ │ │ │ ├── execution-rights │ │ │ │ └── update-deployment-scripts │ │ │ │ │ └── 20190807_54_EXECUTION_RIGHTS │ │ │ │ │ └── 01-check-current-user.groovy │ │ │ │ ├── groovy-scrips-with-exceptions │ │ │ │ └── 20160325_GROOVY_EXCEPTION │ │ │ │ │ └── 01-throw-exception.groovy │ │ │ │ ├── groovy-scripts │ │ │ │ └── 2015902_TICKET_GROOVY │ │ │ │ │ └── 01-hello-world.groovy │ │ │ │ ├── impex-scripts-with-locale │ │ │ │ ├── germany │ │ │ │ │ └── 20141003_DUMMY_TAX │ │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ └── usa │ │ │ │ │ └── 20141003_DUMMY_TAX │ │ │ │ │ └── 01_insert_dummy_tax_with_american_locale.impex │ │ │ │ ├── import-medias │ │ │ │ └── 20150315_IMPORT_HEADER_LIBRARY │ │ │ │ │ ├── 01-import-header.impex │ │ │ │ │ └── user-export.csv │ │ │ │ ├── last-failed-script-test │ │ │ │ ├── update-deployment-scripts │ │ │ │ │ ├── 20150512_PENDING_SCRIPT_CORRECT │ │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ │ └── 20150513_PENDING_SCRIPT_WRONG │ │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ ├── with-corrected-will-executed-test │ │ │ │ │ ├── 20150512_PENDING_SCRIPT_CORRECT │ │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ │ ├── 20150513_PENDING_SCRIPT_WRONG │ │ │ │ │ │ └── 01-ok.groovy │ │ │ │ │ └── 20230220_WILL_BE_EXECUTED │ │ │ │ │ │ └── 01-ok.groovy │ │ │ │ ├── with-removed-error-script-on-disk │ │ │ │ │ ├── 20150512_PENDING_SCRIPT_CORRECT │ │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ │ └── 20230220_WILL_BE_EXECUTED │ │ │ │ │ │ └── 01-ok.groovy │ │ │ │ ├── with-removed-failed-and-will-be-executed-script-on-disk │ │ │ │ │ └── 20150512_PENDING_SCRIPT_CORRECT │ │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ ├── with-removed-will-be-executed-script-on-disk │ │ │ │ │ ├── 20150512_PENDING_SCRIPT_CORRECT │ │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ │ └── 20150513_PENDING_SCRIPT_WRONG │ │ │ │ │ │ └── 01-ok.groovy │ │ │ │ └── with-will-executed-test │ │ │ │ │ ├── 20150512_PENDING_SCRIPT_CORRECT │ │ │ │ │ └── 01_insert_dummy_tax_with_german_locale.impex │ │ │ │ │ ├── 20150513_PENDING_SCRIPT_WRONG │ │ │ │ │ └── 01-error.groovy │ │ │ │ │ └── 20230220_WILL_BE_EXECUTED │ │ │ │ │ └── 01-ok.groovy │ │ │ │ ├── long-execution │ │ │ │ ├── long-with-error │ │ │ │ │ └── 20230209_11_LONG_EXECUTION_SCRIPT_ERROR │ │ │ │ │ │ ├── 01-error.groovy │ │ │ │ │ │ └── longExecutedScript.conf │ │ │ │ ├── long │ │ │ │ │ └── 20230209_11_LONG_EXECUTION_SCRIPT │ │ │ │ │ │ ├── 01-schedule-long-running-task.groovy │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── longExecutedScript.conf │ │ │ │ ├── mixed-scripts │ │ │ │ │ ├── 20230209_11_LONG_EXECUTION_SCRIPT │ │ │ │ │ │ ├── 01-schedule-long-running-task.groovy │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── longExecutedScript.conf │ │ │ │ │ └── 20230209_11_SHORT_EXECUTION_SCRIPT │ │ │ │ │ │ ├── 01-short-execution.groovy │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── shortExecutionScript.conf │ │ │ │ └── short │ │ │ │ │ └── 20230209_11_SHORT_EXECUTION_SCRIPT │ │ │ │ │ ├── 01-short-execution.groovy │ │ │ │ │ ├── description.txt │ │ │ │ │ └── shortExecutionScript.conf │ │ │ │ ├── mixedcaseenvironmentnames │ │ │ │ └── 20150801_TICKET_DEV_CRONJOBS │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ └── development.conf │ │ │ │ ├── run-multiple-times │ │ │ │ ├── mixed-scripts │ │ │ │ │ ├── 20200410_4_RUN_MULTIPLE_TIMES │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── ok.beanshell │ │ │ │ │ │ └── runMultipleTimes.conf │ │ │ │ │ └── 20200410_4_RUN_ONCE_WITHOUT_CONF │ │ │ │ │ │ └── ok.beanshell │ │ │ │ ├── multiple-times-error-corrected │ │ │ │ │ └── 20200410_4_RUN_MULTIPLE_TIMES_ERROR │ │ │ │ │ │ ├── 01-ok.groovy │ │ │ │ │ │ └── runMultipleTimes.conf │ │ │ │ ├── multiple-times-error │ │ │ │ │ └── 20200410_4_RUN_MULTIPLE_TIMES_ERROR │ │ │ │ │ │ ├── error.beanshell │ │ │ │ │ │ └── runMultipleTimes.conf │ │ │ │ ├── multiple-times │ │ │ │ │ └── 20200410_4_RUN_MULTIPLE_TIMES │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── ok.beanshell │ │ │ │ │ │ └── runMultipleTimes.conf │ │ │ │ ├── once-with-conf │ │ │ │ │ └── 20200410_4_RUN_ONCE_WITH_CONF │ │ │ │ │ │ ├── ok.beanshell │ │ │ │ │ │ └── runOnce.conf │ │ │ │ └── once-without-conf │ │ │ │ │ └── 20200410_4_RUN_ONCE_WITHOUT_CONF │ │ │ │ │ └── ok.beanshell │ │ │ │ ├── run-order │ │ │ │ ├── init-deployment-scripts │ │ │ │ │ └── 20190512_INSERT_TAX │ │ │ │ │ │ └── 01_insert_dummy_tax.impex │ │ │ │ └── update-deployment-scripts │ │ │ │ │ └── 20190512_UPDATE_TAX │ │ │ │ │ └── 01_update_dummy_tax.impex │ │ │ │ ├── save-stacktrace │ │ │ │ ├── expected-stackstrace.txt │ │ │ │ └── update-deployment-scripts │ │ │ │ │ └── 20150906_PENDING_SCRIPT_WRONG │ │ │ │ │ └── 01_run_with_errors.groovy │ │ │ │ ├── script-configuration-test │ │ │ │ ├── dev-only │ │ │ │ │ └── 20140814_TICKET_DEV_CRONJOBS │ │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── development.conf │ │ │ │ ├── junit-only │ │ │ │ │ └── 20140814_TICKET_ADD_TEST_CRONJOBS │ │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── unit-test.conf │ │ │ │ ├── just-created-environment │ │ │ │ │ ├── 20140814_01_ADD_NEW_DEPLOYMENT_ENVIRONMENT │ │ │ │ │ │ └── add_qa_webservice_environment.impex │ │ │ │ │ └── 20140814_02_TICKET_ADD_QA_CRONJOBS │ │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── qa-webservice.conf │ │ │ │ ├── master-tenant-only │ │ │ │ │ └── 20140814_TICKET_ADD_TEST_CRONJOBS │ │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── master-tenant.conf │ │ │ │ ├── prod-env-and-tenant-master-only │ │ │ │ │ └── 20140814_TICKET_ADD_PROD_CRONJOBS │ │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── production.conf │ │ │ │ ├── prod-only │ │ │ │ │ └── 20140814_TICKET_ADD_PROD_CRONJOBS │ │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── production.conf │ │ │ │ ├── two-configurations │ │ │ │ │ └── 20140814_TICKET_ADD_DEV_CRONJOBS │ │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── development.conf │ │ │ │ │ │ └── unit-test.conf │ │ │ │ ├── unknown-environment │ │ │ │ │ └── 20140814_TICKET_ADD_DEV_CRONJOBS │ │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── unkown-environment.conf │ │ │ │ └── unknown-tenant │ │ │ │ │ └── 20140814_TICKET_ADD_DEV_CRONJOBS │ │ │ │ │ ├── 01_new_cronjobs.impex │ │ │ │ │ ├── 02_remove_sample_cronjobs.impex │ │ │ │ │ ├── description.txt │ │ │ │ │ └── unkown-tenant.conf │ │ │ │ ├── scripts-returning-nok │ │ │ │ └── 20190807_54_GROOVY_RETURN_NOK │ │ │ │ │ └── 01-return-nok.groovy │ │ │ │ ├── scripts-returning-ok │ │ │ │ └── 20190807_54_GROOVY_RETURN_OK │ │ │ │ │ └── 01-return-ok.groovy │ │ │ │ ├── sql-deployment-scripts │ │ │ │ ├── ddl │ │ │ │ │ └── 20141004_SQL_SCRIPT_CREATE_TABLE │ │ │ │ │ │ ├── 01_create_dummy_table.sql │ │ │ │ │ │ └── 02_drop_dummy_table.sql │ │ │ │ ├── delete │ │ │ │ │ └── 20141004_SQL_SCRIPT_DELETE │ │ │ │ │ │ ├── 01_insert_dummy_tax.impex │ │ │ │ │ │ └── 02_delete_tax.sql │ │ │ │ ├── insert │ │ │ │ │ └── 20141004_SQL_SCRIPT_INSERT │ │ │ │ │ │ ├── 01_insert_number_series.sql │ │ │ │ │ │ ├── 02_check_inserted_number_series.beanshell │ │ │ │ │ │ └── 03_delete_number_series.sql │ │ │ │ ├── select │ │ │ │ │ └── 20141004_SQL_SCRIPT_SELECT │ │ │ │ │ │ ├── 01_insert_dummy_tax.impex │ │ │ │ │ │ └── 02_select_value.sql │ │ │ │ ├── update │ │ │ │ │ └── 20141004_SQL_SCRIPT_UPDATE │ │ │ │ │ │ ├── 01_insert_dummy_tax.impex │ │ │ │ │ │ ├── 02_update_value.sql │ │ │ │ │ │ └── 03_check_updated_tax.beanshell │ │ │ │ └── wrong-query │ │ │ │ │ └── 20141004_SQL_SCRIPT_WRONG_QUERY │ │ │ │ │ ├── 01_insert_dummy_tax.impex │ │ │ │ │ └── 02_insert_tax.sql │ │ │ │ ├── synchronization_of_catalogs │ │ │ │ └── 14112018_Ticket49 │ │ │ │ │ ├── 1-catalogs.impex │ │ │ │ │ ├── 2-Sync-Start.beanshell │ │ │ │ │ └── deployment.conf │ │ │ │ └── tenant-conversion-script-configuration │ │ │ │ ├── 20141004_JUNIT_TENANT │ │ │ │ └── unit-test.conf │ │ │ │ └── 20141004_MASTER_TENANT │ │ │ │ └── master-tenant.conf │ │ ├── ruleset.xml │ │ ├── src │ │ │ └── org │ │ │ │ └── areco │ │ │ │ └── ecommerce │ │ │ │ └── deploymentscripts │ │ │ │ ├── ant │ │ │ │ ├── AntDeploymentScriptsStarter.java │ │ │ │ ├── DataCreatorAndDeploymentScriptsStarter.java │ │ │ │ └── DeploymentScriptFailureException.java │ │ │ │ ├── constants │ │ │ │ └── ArecoDeploymentScriptsManagerConstants.java │ │ │ │ ├── core │ │ │ │ ├── ArecoInitialConfigurationImporter.java │ │ │ │ ├── DeploymentEnvironmentDAO.java │ │ │ │ ├── DeploymentScript.java │ │ │ │ ├── DeploymentScriptConfiguration.java │ │ │ │ ├── DeploymentScriptConfigurationException.java │ │ │ │ ├── DeploymentScriptConfigurationReader.java │ │ │ │ ├── DeploymentScriptFinder.java │ │ │ │ ├── DeploymentScriptRunner.java │ │ │ │ ├── DeploymentScriptService.java │ │ │ │ ├── DeploymentScriptStarter.java │ │ │ │ ├── DeploymentScriptStep.java │ │ │ │ ├── DeploymentScriptStepFactory.java │ │ │ │ ├── ScriptExecutionDao.java │ │ │ │ ├── ScriptExecutionResultDao.java │ │ │ │ ├── ScriptResult.java │ │ │ │ ├── ScriptStepResult.java │ │ │ │ ├── TenantDetector.java │ │ │ │ ├── UpdatingSystemExtensionContext.java │ │ │ │ └── impl │ │ │ │ │ ├── AbstractSingleFileScriptStep.java │ │ │ │ │ ├── AbstractSingleFileScriptStepFactory.java │ │ │ │ │ ├── ArecoDeploymentScriptFinder.java │ │ │ │ │ ├── ArecoDeploymentScriptService.java │ │ │ │ │ ├── ArecoDeploymentScriptsRunner.java │ │ │ │ │ ├── DeploymentScript2ExecutionConverter.java │ │ │ │ │ ├── FlexibleSearchDeploymentEnvironmentDAO.java │ │ │ │ │ ├── FlexibleSearchScriptExecutionDao.java │ │ │ │ │ ├── FlexibleSearchScriptExecutionResultDao.java │ │ │ │ │ ├── ImpexArecoInitialConfigurationImporter.java │ │ │ │ │ ├── PropertyFileDeploymentScriptConfiguration.java │ │ │ │ │ ├── PropertyFileDeploymentScriptConfigurationReader.java │ │ │ │ │ └── RegistryTenantDetector.java │ │ │ │ ├── impex │ │ │ │ ├── ImpexImportException.java │ │ │ │ ├── ImpexImportService.java │ │ │ │ ├── ImpexImportStep.java │ │ │ │ ├── ImpexImportStepFactory.java │ │ │ │ └── impl │ │ │ │ │ └── LocalizedImpexImportService.java │ │ │ │ ├── model │ │ │ │ └── ScriptExecutionFirstFailedCronjobLogFileAttributeHandler.java │ │ │ │ ├── scriptinglanguages │ │ │ │ ├── ScriptingLanguageExecutionException.java │ │ │ │ ├── ScriptingLanguageExecutionService.java │ │ │ │ └── impl │ │ │ │ │ ├── BeanShellScriptStepFactory.java │ │ │ │ │ ├── DelegatingScriptingLanguageExecutionService.java │ │ │ │ │ ├── GroovyScriptStepFactory.java │ │ │ │ │ └── ScriptingLanguageStep.java │ │ │ │ ├── sql │ │ │ │ ├── SqlScriptService.java │ │ │ │ ├── SqlScriptStep.java │ │ │ │ ├── SqlScriptStepFactory.java │ │ │ │ └── impl │ │ │ │ │ └── JaloSqlScriptService.java │ │ │ │ └── systemsetup │ │ │ │ └── ExtensionHelper.java │ │ ├── testsrc │ │ │ └── org │ │ │ │ └── areco │ │ │ │ └── ecommerce │ │ │ │ └── deploymentscripts │ │ │ │ ├── ant │ │ │ │ ├── AntDeploymentScriptsStarterErrorHandlingTest.java │ │ │ │ ├── DataCreatorAndDeploymentScriptStarterTest.java │ │ │ │ ├── DummyMockitoTest.java │ │ │ │ └── EssentialDataCreationDetector.java │ │ │ │ ├── beanshell │ │ │ │ └── SyncCatalogIntegrationTest.java │ │ │ │ ├── core │ │ │ │ ├── AbstractWithConfigurationRestorationTest.java │ │ │ │ ├── ExecutionRightsTest.java │ │ │ │ ├── LastFailedScriptTest.java │ │ │ │ ├── LongExecutionScriptsTest.java │ │ │ │ ├── MixedCaseEnvironmentNamesTest.java │ │ │ │ ├── RunMultipleTimesTest.java │ │ │ │ ├── SaveStacktraceAfterErrorTest.java │ │ │ │ ├── ScriptConfigurationTest.java │ │ │ │ ├── ServerEnvironments.java │ │ │ │ ├── UpdatingSystemExtensionContextLoggingTest.java │ │ │ │ └── impl │ │ │ │ │ └── TenantConversionInScriptConfigurationTest.java │ │ │ │ ├── impex │ │ │ │ └── impl │ │ │ │ │ ├── ImpexScriptWithLocaleTest.java │ │ │ │ │ └── ImportMediaTest.java │ │ │ │ ├── scriptinglanguages │ │ │ │ ├── RunGroovyScriptTest.java │ │ │ │ └── ScriptingLanguageReturnedCodeValidationTest.java │ │ │ │ ├── sql │ │ │ │ ├── CacheManagementSqlScriptTest.java │ │ │ │ └── SqlScriptsTest.java │ │ │ │ └── testhelper │ │ │ │ ├── DeploymentConfigurationSetter.java │ │ │ │ └── DeploymentScriptResultAsserter.java │ │ └── web │ │ │ ├── src │ │ │ └── org │ │ │ │ └── areco │ │ │ │ └── ecommerce │ │ │ │ └── deploymentscripts │ │ │ │ └── dummy.txt │ │ │ └── webroot │ │ │ ├── WEB-INF │ │ │ ├── arecoDeploymentScriptsManager-web-spring.xml │ │ │ ├── ibm-web-ext.xmi │ │ │ └── web.xml │ │ │ └── index.jsp │ │ ├── arecodeploymentscriptsbackoffice │ │ ├── .classpath │ │ ├── .externalToolBuilders │ │ │ └── HybrisCodeGeneration.launch │ │ ├── .pmd │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.springframework.ide.eclipse.beans.core.prefs │ │ │ └── org.springframework.ide.eclipse.core.prefs │ │ ├── .springBeans │ │ ├── LICENSE.txt │ │ ├── backoffice │ │ │ ├── resources │ │ │ │ ├── cng │ │ │ │ │ └── images │ │ │ │ │ │ └── perspective.png │ │ │ │ └── widgets │ │ │ │ │ └── actions │ │ │ │ │ └── runPendingScripts │ │ │ │ │ ├── definition.xml │ │ │ │ │ ├── icons │ │ │ │ │ ├── icon_action_run_pending_scripts_default.png │ │ │ │ │ ├── icon_action_run_pending_scripts_disabled.png │ │ │ │ │ └── icon_action_run_pending_scripts_hover.png │ │ │ │ │ └── labels │ │ │ │ │ ├── labels.properties │ │ │ │ │ ├── labels_de.properties │ │ │ │ │ ├── labels_en.properties │ │ │ │ │ └── labels_es.properties │ │ │ ├── src │ │ │ │ └── org │ │ │ │ │ └── areco │ │ │ │ │ └── ecommerce │ │ │ │ │ └── deploymentscripts │ │ │ │ │ └── backoffice │ │ │ │ │ └── actions │ │ │ │ │ └── RunPendingScriptsAction.java │ │ │ └── testsrc │ │ │ │ └── org │ │ │ │ └── areco │ │ │ │ └── ecommerce │ │ │ │ └── deploymentscripts │ │ │ │ └── backoffice │ │ │ │ └── dummy.txt │ │ ├── buildcallbacks.xml │ │ ├── extensioninfo.xml │ │ ├── lib │ │ │ └── dummy.txt │ │ ├── project.properties │ │ ├── resources │ │ │ ├── arecodeploymentscriptsbackoffice-backoffice-config.xml │ │ │ ├── arecodeploymentscriptsbackoffice-backoffice-labels │ │ │ │ ├── labels.properties │ │ │ │ ├── labels_de.properties │ │ │ │ ├── labels_en.properties │ │ │ │ └── labels_es.properties │ │ │ ├── arecodeploymentscriptsbackoffice-backoffice-spring.xml │ │ │ ├── arecodeploymentscriptsbackoffice-backoffice-widgets.xml │ │ │ ├── arecodeploymentscriptsbackoffice-beans.xml │ │ │ ├── arecodeploymentscriptsbackoffice-items.xml │ │ │ ├── arecodeploymentscriptsbackoffice-spring.xml │ │ │ ├── arecodeploymentscriptsbackoffice.build.number │ │ │ ├── arecodeploymentscriptsbackoffice │ │ │ │ ├── arecodeploymentscriptsbackoffice-webtestclasses.xml │ │ │ │ └── dummy.txt │ │ │ ├── backoffice │ │ │ │ └── dummy.txt │ │ │ ├── localization │ │ │ │ ├── arecodeploymentscriptsbackoffice-locales.properties │ │ │ │ ├── arecodeploymentscriptsbackoffice-locales_de.properties │ │ │ │ ├── arecodeploymentscriptsbackoffice-locales_en.properties │ │ │ │ └── arecodeploymentscriptsbackoffice-locales_es.properties │ │ │ └── update-deployment-scripts │ │ │ │ └── 20230214_remove_ deployment_manager_role │ │ │ │ └── 01_remove_deployment_manager_role.impex │ │ ├── ruleset.xml │ │ ├── src │ │ │ └── org │ │ │ │ └── areco │ │ │ │ └── ecommerce │ │ │ │ └── deploymentscripts │ │ │ │ └── backoffice │ │ │ │ └── constants │ │ │ │ └── ArecodeploymentscriptsbackofficeConstants.java │ │ └── testsrc │ │ │ └── dummy.txt │ │ └── arecodeploymentscriptshmc │ │ ├── .classpath │ │ ├── .externalToolBuilders │ │ └── HybrisCodeGeneration.launch │ │ ├── .pmd │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.springframework.ide.eclipse.beans.core.prefs │ │ └── org.springframework.ide.eclipse.core.prefs │ │ ├── .springBeans │ │ ├── LICENSE.txt │ │ ├── buildcallbacks.xml │ │ ├── extensioninfo.xml │ │ ├── external-dependencies.xml │ │ ├── hmc │ │ ├── jsp │ │ │ └── ext │ │ │ │ └── arecoDeploymentScriptsManager │ │ │ │ ├── css │ │ │ │ └── dummy.txt │ │ │ │ ├── images │ │ │ │ └── dummy.txt │ │ │ │ └── js │ │ │ │ └── dummy.txt │ │ ├── resources │ │ │ ├── hmc.xml │ │ │ └── org │ │ │ │ └── areco │ │ │ │ └── ecommerce │ │ │ │ └── deploymentscripts │ │ │ │ └── hmc │ │ │ │ ├── locales_de.properties │ │ │ │ ├── locales_en.properties │ │ │ │ └── locales_es.properties │ │ └── src │ │ │ └── org │ │ │ └── areco │ │ │ └── ecommerce │ │ │ └── deploymentscripts │ │ │ └── hmc │ │ │ ├── ArecoDeploymentScriptsManagerHMCExtension.java │ │ │ └── actions │ │ │ └── RunPendingScriptsSearchResultAction.java │ │ ├── lib │ │ └── .lastupdate │ │ ├── project.properties │ │ ├── resources │ │ ├── arecodeploymentscriptshmc-items.xml │ │ ├── arecodeploymentscriptshmc-spring.xml │ │ ├── arecodeploymentscriptshmc.build.number │ │ ├── arecodeploymentscriptshmc │ │ │ ├── arecodeploymentscriptshmc-hmctestclasses.xml │ │ │ ├── arecodeploymentscriptshmc-webtestclasses.xml │ │ │ ├── dummy.txt │ │ │ └── sap-hybris-platform.png │ │ └── localization │ │ │ ├── arecodeploymentscriptshmc-locales_de.properties │ │ │ ├── arecodeploymentscriptshmc-locales_en.properties │ │ │ └── arecodeploymentscriptshmc-locales_es.properties │ │ ├── ruleset.xml │ │ ├── src │ │ └── org │ │ │ └── areco │ │ │ └── ecommerce │ │ │ └── deploymentscripts │ │ │ └── hmc │ │ │ ├── constants │ │ │ └── ArecodeploymentscriptshmcConstants.java │ │ │ └── jalo │ │ │ └── ArecodeploymentscriptshmcManager.java │ │ ├── testsrc │ │ └── org │ │ │ └── areco │ │ │ └── ecommerce │ │ │ └── deploymentscripts │ │ │ └── hmc │ │ │ └── dummy.txt │ │ └── web │ │ ├── src │ │ └── dummy.txt │ │ └── webroot │ │ ├── 404.jsp │ │ ├── 405.jsp │ │ ├── 500.jsp │ │ ├── WEB-INF │ │ ├── config │ │ │ ├── arecodeploymentscriptshmc-spring-mvc-config.xml │ │ │ ├── arecodeploymentscriptshmc-spring-security-config.xml │ │ │ └── arecodeploymentscriptshmc-web-app-config.xml │ │ ├── external-dependencies.xml │ │ ├── ibm-web-ext.xmi │ │ ├── lib │ │ │ ├── .lastupdate │ │ │ ├── displaytag-1.2.jar │ │ │ └── jstl-impl-1.2.jar │ │ ├── views │ │ │ └── welcome.jsp │ │ └── web.xml │ │ ├── login.jsp │ │ └── static │ │ └── arecodeploymentscriptshmc-webapp.css ├── config4.8 │ ├── local.properties.template │ └── localextensions.xml.template ├── config5.x │ ├── .directory │ ├── local.properties.template │ └── localextensions.xml.template └── config6.x │ ├── .classpath │ ├── .project │ ├── local.properties.template │ └── localextensions.xml.template ├── hybrisserver.sh ├── idea-module-files ├── advancedsavedquery.iml ├── arecoDeploymentScriptsManager.iml ├── arecodeploymentscriptsbackoffice.iml ├── auditreportservices.iml ├── backoffice.iml ├── catalog.iml ├── comments.iml ├── commons.iml ├── config.iml ├── core.iml ├── deliveryzone.iml ├── europe1.iml ├── hac.iml ├── impex.iml ├── maintenanceweb.iml ├── mediaweb.iml ├── oauth2.iml ├── paymentstandard.iml ├── platform.iml ├── platformbackoffice.iml ├── platformservices.iml ├── processing.iml ├── scripting.iml ├── testweb.iml ├── validation.iml └── workflow.iml ├── integration_tests_with_ant ├── 1_init_on_oracle │ ├── 99-local.properties │ ├── docker-compose.yml │ ├── runTest.sh │ └── runTest.stoppingContainer.sh ├── 2_init_on_mysql │ ├── .env.sample │ ├── 99-local.properties │ ├── docker-compose.yml │ └── runTest.sh ├── 3_init_on_mssql │ ├── .env.sample │ ├── 99-local.properties │ ├── docker-compose.yml │ ├── docker │ │ ├── Dockerfile │ │ ├── configure-db.sh │ │ ├── entrypoint.sh │ │ └── setup.sql │ └── runTest.sh ├── common │ ├── docker_checks.sh │ └── run_test_base.sh ├── dbdriver │ ├── mssql-jdbc-11.2.3.jre17.jar │ ├── mysql-connector-j-8.0.32.jar │ └── ojdbc11.jar └── utils │ ├── wait-for-container-with-healthcheck.sh │ └── wait-for-it.sh ├── intellij-idea-settings ├── CodeStyle.xml ├── intellij_keymaps_and_live_templates.jar └── settings.jar ├── qa ├── build_qa.xml ├── build_qa_checkstyle.xml ├── build_qa_jacoco.xml ├── build_qa_pmd.xml ├── build_qa_spotbugs.xml ├── checkstyle-simple.xsl ├── checkstyle_checks.xml ├── pmd_ruleset.xml └── spotbugs_excluded_classes.xml ├── releasePreparation.txt ├── screenshots ├── screetshotBackofficeExecutions.png ├── screetshotBackofficeExecutionsWithError.png ├── screetshotBackofficeGroup.png └── screetshotHmcRunPendingScripts.png ├── setantenv.bat └── setantenv.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/dictionaries/arobirosa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/dictionaries/arobirosa.xml -------------------------------------------------------------------------------- /.idea/dictionaries/hybris_integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/dictionaries/hybris_integration.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/fileTemplates/includes/File Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/fileTemplates/includes/File Header.java -------------------------------------------------------------------------------- /.idea/hybrisDeveloperSpecificProjectSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/hybrisDeveloperSpecificProjectSettings.xml -------------------------------------------------------------------------------- /.idea/hybrisProjectSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/hybrisProjectSettings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/libraries/Backoffice_Library.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/libraries/Backoffice_Library.xml -------------------------------------------------------------------------------- /.idea/libraries/Platform_Bootstrap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/libraries/Platform_Bootstrap.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Remote_debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/runConfigurations/Remote_debug.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.sdkmanrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/.sdkmanrc -------------------------------------------------------------------------------- /KanbanTickets.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/KanbanTickets.ods -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/README.md -------------------------------------------------------------------------------- /eclipse_settings/Areco Coding Conventions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/eclipse_settings/Areco Coding Conventions.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/.classpath -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/.externalToolBuilders/HybrisCodeGeneration.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/.externalToolBuilders/HybrisCodeGeneration.launch -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/.project -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/.settings/org.springframework.ide.eclipse.beans.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/.settings/org.springframework.ide.eclipse.beans.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/.settings/org.springframework.ide.eclipse.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/.settings/org.springframework.ide.eclipse.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/.springBeans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/.springBeans -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/LICENSE.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/arecoDeploymentScriptsExamples.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/arecoDeploymentScriptsExamples.iml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/buildcallbacks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/buildcallbacks.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/extensioninfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/extensioninfo.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/hmc/jsp/ext/arecoDeploymentScriptsExamples/css/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/hmc/jsp/ext/arecoDeploymentScriptsExamples/images/dummy.txt: -------------------------------------------------------------------------------- 1 | dummy -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/hmc/jsp/ext/arecoDeploymentScriptsExamples/js/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/hmc/resources/hmc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/hmc/resources/hmc.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/hmc/resources/org/areco/ecommerce/deploymentscripts/examples/hmc/locales_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/hmc/resources/org/areco/ecommerce/deploymentscripts/examples/hmc/locales_de.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/hmc/resources/org/areco/ecommerce/deploymentscripts/examples/hmc/locales_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/hmc/resources/org/areco/ecommerce/deploymentscripts/examples/hmc/locales_en.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/hmc/src/org/areco/ecommerce/deploymentscripts/examples/hmc/ArecoDeploymentScriptsExamplesHMCExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/hmc/src/org/areco/ecommerce/deploymentscripts/examples/hmc/ArecoDeploymentScriptsExamplesHMCExtension.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/project.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/arecoDeploymentScriptsExamples-items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/arecoDeploymentScriptsExamples-items.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/arecoDeploymentScriptsExamples-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/arecoDeploymentScriptsExamples-spring.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/arecoDeploymentScriptsExamples.build.number: -------------------------------------------------------------------------------- 1 | version=1.5.5 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/arecoDeploymentScriptsExamples/arecoDeploymentScriptsExamples-hmctestclasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/arecoDeploymentScriptsExamples/arecoDeploymentScriptsExamples-hmctestclasses.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/init-deployment-scripts/20140807_TICKET_INITIAL_CONFIGURATION/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/init-deployment-scripts/20140807_TICKET_INITIAL_CONFIGURATION/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/init-deployment-scripts/20140807_TICKET_INITIAL_CONFIGURATION/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/init-deployment-scripts/20140807_TICKET_INITIAL_CONFIGURATION/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/init-deployment-scripts/20140807_TICKET_INITIAL_CONFIGURATION/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/init-deployment-scripts/20140807_TICKET_INITIAL_CONFIGURATION/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_de.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_en.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_fr.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_ja.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_pt.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_zh.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/localization/arecoDeploymentScriptsExamples-locales_zh.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140601_TICKET_ADD_CRONJOBS_01/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140601_TICKET_ADD_CRONJOBS_01/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140601_TICKET_ADD_CRONJOBS_01/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140601_TICKET_ADD_CRONJOBS_01/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140601_TICKET_ADD_CRONJOBS_01/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140601_TICKET_ADD_CRONJOBS_01/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140608_TICKET_CASE_INSENSITIVE_FILE_SORTING_02/A_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140608_TICKET_CASE_INSENSITIVE_FILE_SORTING_02/A_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140608_TICKET_CASE_INSENSITIVE_FILE_SORTING_02/b_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140608_TICKET_CASE_INSENSITIVE_FILE_SORTING_02/b_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140608_TICKET_CASE_INSENSITIVE_FILE_SORTING_02/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140608_TICKET_CASE_INSENSITIVE_FILE_SORTING_02/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140609_TICKET_USE_SQL_STATEMENT_03/01_insert_historical_prices.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140609_TICKET_USE_SQL_STATEMENT_03/01_insert_historical_prices.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140609_TICKET_USE_SQL_STATEMENT_03/02_remove_all_historical_prices.sql: -------------------------------------------------------------------------------- 1 | delete from {table_prefix}arpriceexample -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140609_TICKET_USE_SQL_STATEMENT_03/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140609_TICKET_USE_SQL_STATEMENT_03/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_01_TICKET_DEV_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_01_TICKET_DEV_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_01_TICKET_DEV_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_01_TICKET_DEV_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_01_TICKET_DEV_CRONJOBS/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_01_TICKET_DEV_CRONJOBS/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_01_TICKET_DEV_CRONJOBS/development.conf: -------------------------------------------------------------------------------- 1 | runonlyonenvironments=DEV,TEST -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_02_TICKET_PRODUCTION_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_02_TICKET_PRODUCTION_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_02_TICKET_PRODUCTION_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_02_TICKET_PRODUCTION_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_02_TICKET_PRODUCTION_CRONJOBS/description.txt: -------------------------------------------------------------------------------- 1 | This example shows a deployment script which only run on PRODUCTION -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_02_TICKET_PRODUCTION_CRONJOBS/productionWithOutIntegration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_02_TICKET_PRODUCTION_CRONJOBS/productionWithOutIntegration.conf -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_03_TICKET_INTEGRATION_TESTS_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_03_TICKET_INTEGRATION_TESTS_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_03_TICKET_INTEGRATION_TESTS_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_03_TICKET_INTEGRATION_TESTS_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_03_TICKET_INTEGRATION_TESTS_CRONJOBS/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_03_TICKET_INTEGRATION_TESTS_CRONJOBS/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_03_TICKET_INTEGRATION_TESTS_CRONJOBS/integrationTests.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20140814_03_TICKET_INTEGRATION_TESTS_CRONJOBS/integrationTests.conf -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20141006_RUN_CRONJOB_WITH_BEANSHELL/00_create_dummy_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20141006_RUN_CRONJOB_WITH_BEANSHELL/00_create_dummy_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20141006_RUN_CRONJOB_WITH_BEANSHELL/01_run_cronjob.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20141006_RUN_CRONJOB_WITH_BEANSHELL/01_run_cronjob.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20141006_RUN_CRONJOB_WITH_BEANSHELL/02_remove_dummy_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20141006_RUN_CRONJOB_WITH_BEANSHELL/02_remove_dummy_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20141006_RUN_CRONJOB_WITH_BEANSHELL/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20141006_RUN_CRONJOB_WITH_BEANSHELL/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150108_RUN_SQL_AND_CHECK_CACHE/01_remove_dummy_environment.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150108_RUN_SQL_AND_CHECK_CACHE/01_remove_dummy_environment.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150108_RUN_SQL_AND_CHECK_CACHE/02_create_dummy_environment.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150108_RUN_SQL_AND_CHECK_CACHE/02_create_dummy_environment.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150108_RUN_SQL_AND_CHECK_CACHE/03_update_deployment_environment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150108_RUN_SQL_AND_CHECK_CACHE/03_update_deployment_environment.sql -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150108_RUN_SQL_AND_CHECK_CACHE/04_test_environment_update.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150108_RUN_SQL_AND_CHECK_CACHE/04_test_environment_update.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150108_RUN_SQL_AND_CHECK_CACHE/05_remove_dummy_environment.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150108_RUN_SQL_AND_CHECK_CACHE/05_remove_dummy_environment.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150317_SQL_INSERT/01_insert_number_series.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20150317_SQL_INSERT/01_insert_number_series.sql -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20181123_REMOVE_DYNAMIC_ATTRIBUTE_HANDLE/01-remove-dynamic-attribute-handle.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20181123_REMOVE_DYNAMIC_ATTRIBUTE_HANDLE/01-remove-dynamic-attribute-handle.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20200404_59_RELOAD_COCKPIT_CONFIGURATION/01_reload_cms_conf_from_admincockpit.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/resources/update-deployment-scripts/20200404_59_RELOAD_COCKPIT_CONFIGURATION/01_reload_cms_conf_from_admincockpit.groovy -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/ruleset.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/src/org/areco/ecommerce/deploymentscripts/examples/constants/ArecoDeploymentScriptsExamplesConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/src/org/areco/ecommerce/deploymentscripts/examples/constants/ArecoDeploymentScriptsExamplesConstants.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/src/org/areco/ecommerce/deploymentscripts/examples/jobs/DummyJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/src/org/areco/ecommerce/deploymentscripts/examples/jobs/DummyJob.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/web/src/org/areco/ecommerce/deploymentscripts/examples/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/web/webroot/WEB-INF/arecoDeploymentScriptsExamples-web-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/web/webroot/WEB-INF/arecoDeploymentScriptsExamples-web-spring.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/web/webroot/WEB-INF/ibm-web-ext.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/web/webroot/WEB-INF/ibm-web-ext.xmi -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/web/webroot/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/web/webroot/WEB-INF/web.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsExamples/web/webroot/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsExamples/web/webroot/index.jsp -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/.classpath -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/.externalToolBuilders/HybrisCodeGeneration.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/.externalToolBuilders/HybrisCodeGeneration.launch -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/.project -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/.settings/org.springframework.ide.eclipse.beans.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/.settings/org.springframework.ide.eclipse.beans.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/.settings/org.springframework.ide.eclipse.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/.settings/org.springframework.ide.eclipse.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/.springBeans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/.springBeans -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/.springBeans.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/.springBeans.new -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/LICENSE.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/arecoDeploymentScriptsManager.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/arecoDeploymentScriptsManager.iml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/buildcallbacks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/buildcallbacks.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/extensioninfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/extensioninfo.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/project.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/arecoDeploymentScriptsManager-items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/arecoDeploymentScriptsManager-items.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/arecoDeploymentScriptsManager-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/arecoDeploymentScriptsManager-spring.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/arecoDeploymentScriptsManager.build.number: -------------------------------------------------------------------------------- 1 | version=1.5.5 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/initial-configuration-de.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/initial-configuration-de.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/initial-configuration.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/initial-configuration.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/localization/arecoDeploymentScriptsManager-locales_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/localization/arecoDeploymentScriptsManager-locales_de.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/localization/arecoDeploymentScriptsManager-locales_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/localization/arecoDeploymentScriptsManager-locales_en.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/localization/arecoDeploymentScriptsManager-locales_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/localization/arecoDeploymentScriptsManager-locales_es.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/ant-scripts-starter-error-handling/no-scripts/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/ant-scripts-starter-error-handling/script-requiring-admin/20230216_18_REQUIRES_ADMIN/01-check-if-admin-user.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/ant-scripts-starter-error-handling/script-requiring-admin/20230216_18_REQUIRES_ADMIN/01-check-if-admin-user.groovy -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/ant-scripts-starter-error-handling/script-with-error/20141002_PENDING_SCRIPT_CORRECT/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | INSERT Tax;code[unique=true];value; 2 | ;dummyGermanTax2;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/ant-scripts-starter-error-handling/script-with-error/20141003_PENDING_SCRIPT/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | IN_WRONG_SERT Tax;code[unique=true];value; 2 | ;dummyGermanTax;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/ant-scripts-starter-error-handling/script-without-error/20141002_PENDING_SCRIPT_CORRECT/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | INSERT Tax;code[unique=true];value; 2 | ;dummyGermanTax2;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/ant-scripts-starter-error-handling/script-without-error/20141003_PENDING_SCRIPT/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | INSERT Tax;code[unique=true];value; 2 | ;dummyGermanTax;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/context-logging/update-deployment-scripts/20150126_TICKET_USE_BEANSHELL_TO_RELOAD_CMS_CONF/01_return_ok.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/context-logging/update-deployment-scripts/20150126_TICKET_USE_BEANSHELL_TO_RELOAD_CMS_CONF/01_return_ok.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/environmentnameswithspaces/20150801_TICKET_DEV_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/environmentnameswithspaces/20150801_TICKET_DEV_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/environmentnameswithspaces/20150801_TICKET_DEV_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/environmentnameswithspaces/20150801_TICKET_DEV_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/environmentnameswithspaces/20150801_TICKET_DEV_CRONJOBS/development.conf: -------------------------------------------------------------------------------- 1 | runonlyonenvironments= DeV , test -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/essential-data-creator/init-deployment-scripts/20141005_RELOAD_CMS_CONF/01_return_ok.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/essential-data-creator/init-deployment-scripts/20141005_RELOAD_CMS_CONF/01_return_ok.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/essential-data-creator/update-deployment-scripts/20141004_RELOAD_CMS_CONF/01_return_ok.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/essential-data-creator/update-deployment-scripts/20141004_RELOAD_CMS_CONF/01_return_ok.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/execution-rights/update-deployment-scripts/20190807_54_EXECUTION_RIGHTS/01-check-current-user.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/execution-rights/update-deployment-scripts/20190807_54_EXECUTION_RIGHTS/01-check-current-user.groovy -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/groovy-scrips-with-exceptions/20160325_GROOVY_EXCEPTION/01-throw-exception.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/groovy-scrips-with-exceptions/20160325_GROOVY_EXCEPTION/01-throw-exception.groovy -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/groovy-scripts/2015902_TICKET_GROOVY/01-hello-world.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/groovy-scripts/2015902_TICKET_GROOVY/01-hello-world.groovy -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/impex-scripts-with-locale/germany/20141003_DUMMY_TAX/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | INSERT Tax;code[unique=true];value; 2 | ;dummyGermanTax;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/impex-scripts-with-locale/usa/20141003_DUMMY_TAX/01_insert_dummy_tax_with_american_locale.impex: -------------------------------------------------------------------------------- 1 | INSERT Tax;code[unique=true];value; 2 | ;dummyAmericanTax;18.342 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/import-medias/20150315_IMPORT_HEADER_LIBRARY/01-import-header.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/import-medias/20150315_IMPORT_HEADER_LIBRARY/01-import-header.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/import-medias/20150315_IMPORT_HEADER_LIBRARY/user-export.csv: -------------------------------------------------------------------------------- 1 | INSERT_UPDATE User;uid[unique=true] -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/update-deployment-scripts/20150512_PENDING_SCRIPT_CORRECT/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | INSERT Tax;code[unique=true];value; 2 | ;dummyGermanTax2;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/update-deployment-scripts/20150513_PENDING_SCRIPT_WRONG/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | IN_WRONG_SERT Tax;code[unique=true];value; 2 | ;dummyGermanTax;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/with-corrected-will-executed-test/20150512_PENDING_SCRIPT_CORRECT/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | INSERT Tax;code[unique=true];value; 2 | ;dummyGermanTax2;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/with-corrected-will-executed-test/20150513_PENDING_SCRIPT_WRONG/01-ok.groovy: -------------------------------------------------------------------------------- 1 | return "OK" 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/with-corrected-will-executed-test/20230220_WILL_BE_EXECUTED/01-ok.groovy: -------------------------------------------------------------------------------- 1 | return "OK" 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/with-removed-error-script-on-disk/20150512_PENDING_SCRIPT_CORRECT/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | INSERT Tax;code[unique=true];value; 2 | ;dummyGermanTax2;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/with-removed-error-script-on-disk/20230220_WILL_BE_EXECUTED/01-ok.groovy: -------------------------------------------------------------------------------- 1 | return "OK" 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/with-removed-failed-and-will-be-executed-script-on-disk/20150512_PENDING_SCRIPT_CORRECT/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | INSERT Tax;code[unique=true];value; 2 | ;dummyGermanTax2;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/with-removed-will-be-executed-script-on-disk/20150512_PENDING_SCRIPT_CORRECT/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | INSERT Tax;code[unique=true];value; 2 | ;dummyGermanTax2;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/with-removed-will-be-executed-script-on-disk/20150513_PENDING_SCRIPT_WRONG/01-ok.groovy: -------------------------------------------------------------------------------- 1 | return "OK" 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/with-will-executed-test/20150512_PENDING_SCRIPT_CORRECT/01_insert_dummy_tax_with_german_locale.impex: -------------------------------------------------------------------------------- 1 | INSERT Tax;code[unique=true];value; 2 | ;dummyGermanTax2;4,90 -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/with-will-executed-test/20150513_PENDING_SCRIPT_WRONG/01-error.groovy: -------------------------------------------------------------------------------- 1 | return "Error" 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/last-failed-script-test/with-will-executed-test/20230220_WILL_BE_EXECUTED/01-ok.groovy: -------------------------------------------------------------------------------- 1 | return "OK" 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/long-with-error/20230209_11_LONG_EXECUTION_SCRIPT_ERROR/01-error.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/long-with-error/20230209_11_LONG_EXECUTION_SCRIPT_ERROR/01-error.groovy -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/long-with-error/20230209_11_LONG_EXECUTION_SCRIPT_ERROR/longExecutedScript.conf: -------------------------------------------------------------------------------- 1 | hasLongExecution=true 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/long/20230209_11_LONG_EXECUTION_SCRIPT/01-schedule-long-running-task.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/long/20230209_11_LONG_EXECUTION_SCRIPT/01-schedule-long-running-task.groovy -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/long/20230209_11_LONG_EXECUTION_SCRIPT/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/long/20230209_11_LONG_EXECUTION_SCRIPT/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/long/20230209_11_LONG_EXECUTION_SCRIPT/longExecutedScript.conf: -------------------------------------------------------------------------------- 1 | hasLongExecution=true 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/mixed-scripts/20230209_11_LONG_EXECUTION_SCRIPT/01-schedule-long-running-task.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/mixed-scripts/20230209_11_LONG_EXECUTION_SCRIPT/01-schedule-long-running-task.groovy -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/mixed-scripts/20230209_11_LONG_EXECUTION_SCRIPT/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/mixed-scripts/20230209_11_LONG_EXECUTION_SCRIPT/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/mixed-scripts/20230209_11_LONG_EXECUTION_SCRIPT/longExecutedScript.conf: -------------------------------------------------------------------------------- 1 | hasLongExecution=true 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/mixed-scripts/20230209_11_SHORT_EXECUTION_SCRIPT/01-short-execution.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/mixed-scripts/20230209_11_SHORT_EXECUTION_SCRIPT/01-short-execution.groovy -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/mixed-scripts/20230209_11_SHORT_EXECUTION_SCRIPT/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/mixed-scripts/20230209_11_SHORT_EXECUTION_SCRIPT/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/mixed-scripts/20230209_11_SHORT_EXECUTION_SCRIPT/shortExecutionScript.conf: -------------------------------------------------------------------------------- 1 | hasLongExecution=false 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/short/20230209_11_SHORT_EXECUTION_SCRIPT/01-short-execution.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/short/20230209_11_SHORT_EXECUTION_SCRIPT/01-short-execution.groovy -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/short/20230209_11_SHORT_EXECUTION_SCRIPT/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/short/20230209_11_SHORT_EXECUTION_SCRIPT/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/long-execution/short/20230209_11_SHORT_EXECUTION_SCRIPT/shortExecutionScript.conf: -------------------------------------------------------------------------------- 1 | hasLongExecution=false 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/mixedcaseenvironmentnames/20150801_TICKET_DEV_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/mixedcaseenvironmentnames/20150801_TICKET_DEV_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/mixedcaseenvironmentnames/20150801_TICKET_DEV_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/mixedcaseenvironmentnames/20150801_TICKET_DEV_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/mixedcaseenvironmentnames/20150801_TICKET_DEV_CRONJOBS/development.conf: -------------------------------------------------------------------------------- 1 | runonlyonenvironments=Dev,test -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/mixed-scripts/20200410_4_RUN_MULTIPLE_TIMES/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/mixed-scripts/20200410_4_RUN_MULTIPLE_TIMES/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/mixed-scripts/20200410_4_RUN_MULTIPLE_TIMES/ok.beanshell: -------------------------------------------------------------------------------- 1 | return "OK"; 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/mixed-scripts/20200410_4_RUN_MULTIPLE_TIMES/runMultipleTimes.conf: -------------------------------------------------------------------------------- 1 | runmultipletimes=true 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/mixed-scripts/20200410_4_RUN_ONCE_WITHOUT_CONF/ok.beanshell: -------------------------------------------------------------------------------- 1 | return "OK"; 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/multiple-times-error-corrected/20200410_4_RUN_MULTIPLE_TIMES_ERROR/01-ok.groovy: -------------------------------------------------------------------------------- 1 | return "OK" 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/multiple-times-error-corrected/20200410_4_RUN_MULTIPLE_TIMES_ERROR/runMultipleTimes.conf: -------------------------------------------------------------------------------- 1 | runmultipletimes=true 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/multiple-times-error/20200410_4_RUN_MULTIPLE_TIMES_ERROR/error.beanshell: -------------------------------------------------------------------------------- 1 | return "ERROR"; 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/multiple-times-error/20200410_4_RUN_MULTIPLE_TIMES_ERROR/runMultipleTimes.conf: -------------------------------------------------------------------------------- 1 | runmultipletimes=true 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/multiple-times/20200410_4_RUN_MULTIPLE_TIMES/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/multiple-times/20200410_4_RUN_MULTIPLE_TIMES/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/multiple-times/20200410_4_RUN_MULTIPLE_TIMES/ok.beanshell: -------------------------------------------------------------------------------- 1 | return "OK"; 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/multiple-times/20200410_4_RUN_MULTIPLE_TIMES/runMultipleTimes.conf: -------------------------------------------------------------------------------- 1 | runmultipletimes=true 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/once-with-conf/20200410_4_RUN_ONCE_WITH_CONF/ok.beanshell: -------------------------------------------------------------------------------- 1 | return "OK"; 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/once-with-conf/20200410_4_RUN_ONCE_WITH_CONF/runOnce.conf: -------------------------------------------------------------------------------- 1 | runmultipletimes=false 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-multiple-times/once-without-conf/20200410_4_RUN_ONCE_WITHOUT_CONF/ok.beanshell: -------------------------------------------------------------------------------- 1 | return "OK"; 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-order/init-deployment-scripts/20190512_INSERT_TAX/01_insert_dummy_tax.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-order/init-deployment-scripts/20190512_INSERT_TAX/01_insert_dummy_tax.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-order/update-deployment-scripts/20190512_UPDATE_TAX/01_update_dummy_tax.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/run-order/update-deployment-scripts/20190512_UPDATE_TAX/01_update_dummy_tax.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/save-stacktrace/expected-stackstrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/save-stacktrace/expected-stackstrace.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/save-stacktrace/update-deployment-scripts/20150906_PENDING_SCRIPT_WRONG/01_run_with_errors.groovy: -------------------------------------------------------------------------------- 1 | "This script must fail".unknownMethod 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/dev-only/20140814_TICKET_DEV_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/dev-only/20140814_TICKET_DEV_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/dev-only/20140814_TICKET_DEV_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/dev-only/20140814_TICKET_DEV_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/dev-only/20140814_TICKET_DEV_CRONJOBS/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/dev-only/20140814_TICKET_DEV_CRONJOBS/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/dev-only/20140814_TICKET_DEV_CRONJOBS/development.conf: -------------------------------------------------------------------------------- 1 | runonlyonenvironments=DEV,TEST -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/junit-only/20140814_TICKET_ADD_TEST_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/junit-only/20140814_TICKET_ADD_TEST_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/junit-only/20140814_TICKET_ADD_TEST_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/junit-only/20140814_TICKET_ADD_TEST_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/junit-only/20140814_TICKET_ADD_TEST_CRONJOBS/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/junit-only/20140814_TICKET_ADD_TEST_CRONJOBS/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/junit-only/20140814_TICKET_ADD_TEST_CRONJOBS/unit-test.conf: -------------------------------------------------------------------------------- 1 | runonlyontenants=junit -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/just-created-environment/20140814_01_ADD_NEW_DEPLOYMENT_ENVIRONMENT/add_qa_webservice_environment.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/just-created-environment/20140814_01_ADD_NEW_DEPLOYMENT_ENVIRONMENT/add_qa_webservice_environment.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/just-created-environment/20140814_02_TICKET_ADD_QA_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/just-created-environment/20140814_02_TICKET_ADD_QA_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/just-created-environment/20140814_02_TICKET_ADD_QA_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/just-created-environment/20140814_02_TICKET_ADD_QA_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/just-created-environment/20140814_02_TICKET_ADD_QA_CRONJOBS/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/just-created-environment/20140814_02_TICKET_ADD_QA_CRONJOBS/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/just-created-environment/20140814_02_TICKET_ADD_QA_CRONJOBS/qa-webservice.conf: -------------------------------------------------------------------------------- 1 | runonlyonenvironments=QA_WEBSERVICE -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/master-tenant-only/20140814_TICKET_ADD_TEST_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/master-tenant-only/20140814_TICKET_ADD_TEST_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/master-tenant-only/20140814_TICKET_ADD_TEST_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/master-tenant-only/20140814_TICKET_ADD_TEST_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/master-tenant-only/20140814_TICKET_ADD_TEST_CRONJOBS/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/master-tenant-only/20140814_TICKET_ADD_TEST_CRONJOBS/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/master-tenant-only/20140814_TICKET_ADD_TEST_CRONJOBS/master-tenant.conf: -------------------------------------------------------------------------------- 1 | runonlyontenants=master -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-env-and-tenant-master-only/20140814_TICKET_ADD_PROD_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-env-and-tenant-master-only/20140814_TICKET_ADD_PROD_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-env-and-tenant-master-only/20140814_TICKET_ADD_PROD_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-env-and-tenant-master-only/20140814_TICKET_ADD_PROD_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-env-and-tenant-master-only/20140814_TICKET_ADD_PROD_CRONJOBS/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-env-and-tenant-master-only/20140814_TICKET_ADD_PROD_CRONJOBS/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-env-and-tenant-master-only/20140814_TICKET_ADD_PROD_CRONJOBS/production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-env-and-tenant-master-only/20140814_TICKET_ADD_PROD_CRONJOBS/production.conf -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-only/20140814_TICKET_ADD_PROD_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-only/20140814_TICKET_ADD_PROD_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-only/20140814_TICKET_ADD_PROD_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-only/20140814_TICKET_ADD_PROD_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-only/20140814_TICKET_ADD_PROD_CRONJOBS/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-only/20140814_TICKET_ADD_PROD_CRONJOBS/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/prod-only/20140814_TICKET_ADD_PROD_CRONJOBS/production.conf: -------------------------------------------------------------------------------- 1 | runonlyonenvironments=INT,PRODUCTION -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/two-configurations/20140814_TICKET_ADD_DEV_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/two-configurations/20140814_TICKET_ADD_DEV_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/two-configurations/20140814_TICKET_ADD_DEV_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/two-configurations/20140814_TICKET_ADD_DEV_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/two-configurations/20140814_TICKET_ADD_DEV_CRONJOBS/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/two-configurations/20140814_TICKET_ADD_DEV_CRONJOBS/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/two-configurations/20140814_TICKET_ADD_DEV_CRONJOBS/development.conf: -------------------------------------------------------------------------------- 1 | runonlyonenvironments=LOCAL,DEV -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/two-configurations/20140814_TICKET_ADD_DEV_CRONJOBS/unit-test.conf: -------------------------------------------------------------------------------- 1 | runonlyontenants=junit -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-environment/20140814_TICKET_ADD_DEV_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-environment/20140814_TICKET_ADD_DEV_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-environment/20140814_TICKET_ADD_DEV_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-environment/20140814_TICKET_ADD_DEV_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-environment/20140814_TICKET_ADD_DEV_CRONJOBS/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-environment/20140814_TICKET_ADD_DEV_CRONJOBS/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-environment/20140814_TICKET_ADD_DEV_CRONJOBS/unkown-environment.conf: -------------------------------------------------------------------------------- 1 | runonlyonenvironments=DEVELOPMENT_AND_TESTING -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-tenant/20140814_TICKET_ADD_DEV_CRONJOBS/01_new_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-tenant/20140814_TICKET_ADD_DEV_CRONJOBS/01_new_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-tenant/20140814_TICKET_ADD_DEV_CRONJOBS/02_remove_sample_cronjobs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-tenant/20140814_TICKET_ADD_DEV_CRONJOBS/02_remove_sample_cronjobs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-tenant/20140814_TICKET_ADD_DEV_CRONJOBS/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-tenant/20140814_TICKET_ADD_DEV_CRONJOBS/description.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-tenant/20140814_TICKET_ADD_DEV_CRONJOBS/unkown-tenant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/script-configuration-test/unknown-tenant/20140814_TICKET_ADD_DEV_CRONJOBS/unkown-tenant.conf -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/scripts-returning-nok/20190807_54_GROOVY_RETURN_NOK/01-return-nok.groovy: -------------------------------------------------------------------------------- 1 | return "Something else" 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/scripts-returning-ok/20190807_54_GROOVY_RETURN_OK/01-return-ok.groovy: -------------------------------------------------------------------------------- 1 | return "OK" 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/ddl/20141004_SQL_SCRIPT_CREATE_TABLE/01_create_dummy_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/ddl/20141004_SQL_SCRIPT_CREATE_TABLE/01_create_dummy_table.sql -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/ddl/20141004_SQL_SCRIPT_CREATE_TABLE/02_drop_dummy_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/ddl/20141004_SQL_SCRIPT_CREATE_TABLE/02_drop_dummy_table.sql -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/delete/20141004_SQL_SCRIPT_DELETE/01_insert_dummy_tax.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/delete/20141004_SQL_SCRIPT_DELETE/01_insert_dummy_tax.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/delete/20141004_SQL_SCRIPT_DELETE/02_delete_tax.sql: -------------------------------------------------------------------------------- 1 | delete from {TABLE_PREFIX}taxes where p_code = 'dummySqlScriptTax' 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/insert/20141004_SQL_SCRIPT_INSERT/01_insert_number_series.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/insert/20141004_SQL_SCRIPT_INSERT/01_insert_number_series.sql -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/insert/20141004_SQL_SCRIPT_INSERT/02_check_inserted_number_series.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/insert/20141004_SQL_SCRIPT_INSERT/02_check_inserted_number_series.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/insert/20141004_SQL_SCRIPT_INSERT/03_delete_number_series.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/insert/20141004_SQL_SCRIPT_INSERT/03_delete_number_series.sql -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/select/20141004_SQL_SCRIPT_SELECT/01_insert_dummy_tax.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/select/20141004_SQL_SCRIPT_SELECT/01_insert_dummy_tax.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/select/20141004_SQL_SCRIPT_SELECT/02_select_value.sql: -------------------------------------------------------------------------------- 1 | select value from {TABLE_PREFIX}taxes where p_code = 'dummySqlScriptTax' 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/update/20141004_SQL_SCRIPT_UPDATE/01_insert_dummy_tax.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/update/20141004_SQL_SCRIPT_UPDATE/01_insert_dummy_tax.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/update/20141004_SQL_SCRIPT_UPDATE/02_update_value.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/update/20141004_SQL_SCRIPT_UPDATE/02_update_value.sql -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/update/20141004_SQL_SCRIPT_UPDATE/03_check_updated_tax.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/update/20141004_SQL_SCRIPT_UPDATE/03_check_updated_tax.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/wrong-query/20141004_SQL_SCRIPT_WRONG_QUERY/01_insert_dummy_tax.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/wrong-query/20141004_SQL_SCRIPT_WRONG_QUERY/01_insert_dummy_tax.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/sql-deployment-scripts/wrong-query/20141004_SQL_SCRIPT_WRONG_QUERY/02_insert_tax.sql: -------------------------------------------------------------------------------- 1 | this is not a valid sql query -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/synchronization_of_catalogs/14112018_Ticket49/1-catalogs.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/synchronization_of_catalogs/14112018_Ticket49/1-catalogs.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/synchronization_of_catalogs/14112018_Ticket49/2-Sync-Start.beanshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/synchronization_of_catalogs/14112018_Ticket49/2-Sync-Start.beanshell -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/synchronization_of_catalogs/14112018_Ticket49/deployment.conf: -------------------------------------------------------------------------------- 1 | runonlyontenants=junit -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/tenant-conversion-script-configuration/20141004_JUNIT_TENANT/unit-test.conf: -------------------------------------------------------------------------------- 1 | runonlyontenants=junit -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/resources/test/tenant-conversion-script-configuration/20141004_MASTER_TENANT/master-tenant.conf: -------------------------------------------------------------------------------- 1 | runonlyontenants=master -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/ruleset.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/ant/AntDeploymentScriptsStarter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/ant/AntDeploymentScriptsStarter.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/ant/DataCreatorAndDeploymentScriptsStarter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/ant/DataCreatorAndDeploymentScriptsStarter.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/ant/DeploymentScriptFailureException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/ant/DeploymentScriptFailureException.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/constants/ArecoDeploymentScriptsManagerConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/constants/ArecoDeploymentScriptsManagerConstants.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/ArecoInitialConfigurationImporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/ArecoInitialConfigurationImporter.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentEnvironmentDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentEnvironmentDAO.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScript.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptConfiguration.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptConfigurationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptConfigurationException.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptConfigurationReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptConfigurationReader.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptFinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptFinder.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptRunner.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptService.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptStarter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptStarter.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptStep.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptStepFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/DeploymentScriptStepFactory.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/ScriptExecutionDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/ScriptExecutionDao.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/ScriptExecutionResultDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/ScriptExecutionResultDao.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/ScriptResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/ScriptResult.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/ScriptStepResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/ScriptStepResult.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/TenantDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/TenantDetector.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/UpdatingSystemExtensionContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/UpdatingSystemExtensionContext.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/AbstractSingleFileScriptStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/AbstractSingleFileScriptStep.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/AbstractSingleFileScriptStepFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/AbstractSingleFileScriptStepFactory.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/ArecoDeploymentScriptFinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/ArecoDeploymentScriptFinder.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/ArecoDeploymentScriptService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/ArecoDeploymentScriptService.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/ArecoDeploymentScriptsRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/ArecoDeploymentScriptsRunner.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/DeploymentScript2ExecutionConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/DeploymentScript2ExecutionConverter.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/FlexibleSearchDeploymentEnvironmentDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/FlexibleSearchDeploymentEnvironmentDAO.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/FlexibleSearchScriptExecutionDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/FlexibleSearchScriptExecutionDao.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/FlexibleSearchScriptExecutionResultDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/FlexibleSearchScriptExecutionResultDao.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/ImpexArecoInitialConfigurationImporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/ImpexArecoInitialConfigurationImporter.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/PropertyFileDeploymentScriptConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/PropertyFileDeploymentScriptConfiguration.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/PropertyFileDeploymentScriptConfigurationReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/PropertyFileDeploymentScriptConfigurationReader.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/RegistryTenantDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/core/impl/RegistryTenantDetector.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/impex/ImpexImportException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/impex/ImpexImportException.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/impex/ImpexImportService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/impex/ImpexImportService.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/impex/ImpexImportStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/impex/ImpexImportStep.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/impex/ImpexImportStepFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/impex/ImpexImportStepFactory.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/impex/impl/LocalizedImpexImportService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/impex/impl/LocalizedImpexImportService.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/model/ScriptExecutionFirstFailedCronjobLogFileAttributeHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/model/ScriptExecutionFirstFailedCronjobLogFileAttributeHandler.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/ScriptingLanguageExecutionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/ScriptingLanguageExecutionException.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/ScriptingLanguageExecutionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/ScriptingLanguageExecutionService.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/impl/BeanShellScriptStepFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/impl/BeanShellScriptStepFactory.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/impl/DelegatingScriptingLanguageExecutionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/impl/DelegatingScriptingLanguageExecutionService.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/impl/GroovyScriptStepFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/impl/GroovyScriptStepFactory.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/impl/ScriptingLanguageStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/scriptinglanguages/impl/ScriptingLanguageStep.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/sql/SqlScriptService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/sql/SqlScriptService.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/sql/SqlScriptStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/sql/SqlScriptStep.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/sql/SqlScriptStepFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/sql/SqlScriptStepFactory.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/sql/impl/JaloSqlScriptService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/sql/impl/JaloSqlScriptService.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/systemsetup/ExtensionHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/src/org/areco/ecommerce/deploymentscripts/systemsetup/ExtensionHelper.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/ant/AntDeploymentScriptsStarterErrorHandlingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/ant/AntDeploymentScriptsStarterErrorHandlingTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/ant/DataCreatorAndDeploymentScriptStarterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/ant/DataCreatorAndDeploymentScriptStarterTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/ant/DummyMockitoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/ant/DummyMockitoTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/ant/EssentialDataCreationDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/ant/EssentialDataCreationDetector.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/beanshell/SyncCatalogIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/beanshell/SyncCatalogIntegrationTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/AbstractWithConfigurationRestorationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/AbstractWithConfigurationRestorationTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/ExecutionRightsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/ExecutionRightsTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/LastFailedScriptTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/LastFailedScriptTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/LongExecutionScriptsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/LongExecutionScriptsTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/MixedCaseEnvironmentNamesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/MixedCaseEnvironmentNamesTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/RunMultipleTimesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/RunMultipleTimesTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/SaveStacktraceAfterErrorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/SaveStacktraceAfterErrorTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/ScriptConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/ScriptConfigurationTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/ServerEnvironments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/ServerEnvironments.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/UpdatingSystemExtensionContextLoggingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/UpdatingSystemExtensionContextLoggingTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/impl/TenantConversionInScriptConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/core/impl/TenantConversionInScriptConfigurationTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/impex/impl/ImpexScriptWithLocaleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/impex/impl/ImpexScriptWithLocaleTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/impex/impl/ImportMediaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/impex/impl/ImportMediaTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/scriptinglanguages/RunGroovyScriptTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/scriptinglanguages/RunGroovyScriptTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/scriptinglanguages/ScriptingLanguageReturnedCodeValidationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/scriptinglanguages/ScriptingLanguageReturnedCodeValidationTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/sql/CacheManagementSqlScriptTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/sql/CacheManagementSqlScriptTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/sql/SqlScriptsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/sql/SqlScriptsTest.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/testhelper/DeploymentConfigurationSetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/testhelper/DeploymentConfigurationSetter.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/testhelper/DeploymentScriptResultAsserter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/testsrc/org/areco/ecommerce/deploymentscripts/testhelper/DeploymentScriptResultAsserter.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/web/src/org/areco/ecommerce/deploymentscripts/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/web/webroot/WEB-INF/arecoDeploymentScriptsManager-web-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/web/webroot/WEB-INF/arecoDeploymentScriptsManager-web-spring.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/web/webroot/WEB-INF/ibm-web-ext.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/web/webroot/WEB-INF/ibm-web-ext.xmi -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/web/webroot/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/web/webroot/WEB-INF/web.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecoDeploymentScriptsManager/web/webroot/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecoDeploymentScriptsManager/web/webroot/index.jsp -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/.classpath -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/.externalToolBuilders/HybrisCodeGeneration.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/.externalToolBuilders/HybrisCodeGeneration.launch -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/.pmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/.pmd -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/.project -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/.settings/org.springframework.ide.eclipse.beans.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/.settings/org.springframework.ide.eclipse.beans.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/.settings/org.springframework.ide.eclipse.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/.settings/org.springframework.ide.eclipse.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/.springBeans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/.springBeans -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/LICENSE.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/cng/images/perspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/cng/images/perspective.png -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/definition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/definition.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/icons/icon_action_run_pending_scripts_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/icons/icon_action_run_pending_scripts_default.png -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/icons/icon_action_run_pending_scripts_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/icons/icon_action_run_pending_scripts_disabled.png -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/icons/icon_action_run_pending_scripts_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/icons/icon_action_run_pending_scripts_hover.png -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/labels/labels.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/labels/labels.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/labels/labels_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/labels/labels_de.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/labels/labels_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/labels/labels_en.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/labels/labels_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/resources/widgets/actions/runPendingScripts/labels/labels_es.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/src/org/areco/ecommerce/deploymentscripts/backoffice/actions/RunPendingScriptsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/src/org/areco/ecommerce/deploymentscripts/backoffice/actions/RunPendingScriptsAction.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/backoffice/testsrc/org/areco/ecommerce/deploymentscripts/backoffice/dummy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/buildcallbacks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/buildcallbacks.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/extensioninfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/extensioninfo.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/lib/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/project.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-config.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-labels/labels.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-labels/labels.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-labels/labels_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-labels/labels_de.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-labels/labels_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-labels/labels_en.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-labels/labels_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-labels/labels_es.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-spring.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-backoffice-widgets.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-beans.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-items.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice-spring.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice.build.number: -------------------------------------------------------------------------------- 1 | version=1.5.5 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice/arecodeploymentscriptsbackoffice-webtestclasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice/arecodeploymentscriptsbackoffice-webtestclasses.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/arecodeploymentscriptsbackoffice/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/backoffice/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/localization/arecodeploymentscriptsbackoffice-locales.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/localization/arecodeploymentscriptsbackoffice-locales.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/localization/arecodeploymentscriptsbackoffice-locales_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/localization/arecodeploymentscriptsbackoffice-locales_de.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/localization/arecodeploymentscriptsbackoffice-locales_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/localization/arecodeploymentscriptsbackoffice-locales_en.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/localization/arecodeploymentscriptsbackoffice-locales_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/localization/arecodeploymentscriptsbackoffice-locales_es.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/update-deployment-scripts/20230214_remove_ deployment_manager_role/01_remove_deployment_manager_role.impex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/resources/update-deployment-scripts/20230214_remove_ deployment_manager_role/01_remove_deployment_manager_role.impex -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/ruleset.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/src/org/areco/ecommerce/deploymentscripts/backoffice/constants/ArecodeploymentscriptsbackofficeConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptsbackoffice/src/org/areco/ecommerce/deploymentscripts/backoffice/constants/ArecodeploymentscriptsbackofficeConstants.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptsbackoffice/testsrc/dummy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/.classpath -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/.externalToolBuilders/HybrisCodeGeneration.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/.externalToolBuilders/HybrisCodeGeneration.launch -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/.pmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/.pmd -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/.project -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/.settings/org.springframework.ide.eclipse.beans.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/.settings/org.springframework.ide.eclipse.beans.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/.settings/org.springframework.ide.eclipse.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/.settings/org.springframework.ide.eclipse.core.prefs -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/.springBeans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/.springBeans -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/LICENSE.txt -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/buildcallbacks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/buildcallbacks.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/extensioninfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/extensioninfo.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/external-dependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/external-dependencies.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/hmc/jsp/ext/arecoDeploymentScriptsManager/css/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/hmc/jsp/ext/arecoDeploymentScriptsManager/images/dummy.txt: -------------------------------------------------------------------------------- 1 | dummy -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/hmc/jsp/ext/arecoDeploymentScriptsManager/js/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/hmc/resources/hmc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/hmc/resources/hmc.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/hmc/resources/org/areco/ecommerce/deploymentscripts/hmc/locales_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/hmc/resources/org/areco/ecommerce/deploymentscripts/hmc/locales_de.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/hmc/resources/org/areco/ecommerce/deploymentscripts/hmc/locales_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/hmc/resources/org/areco/ecommerce/deploymentscripts/hmc/locales_en.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/hmc/resources/org/areco/ecommerce/deploymentscripts/hmc/locales_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/hmc/resources/org/areco/ecommerce/deploymentscripts/hmc/locales_es.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/hmc/src/org/areco/ecommerce/deploymentscripts/hmc/ArecoDeploymentScriptsManagerHMCExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/hmc/src/org/areco/ecommerce/deploymentscripts/hmc/ArecoDeploymentScriptsManagerHMCExtension.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/hmc/src/org/areco/ecommerce/deploymentscripts/hmc/actions/RunPendingScriptsSearchResultAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/hmc/src/org/areco/ecommerce/deploymentscripts/hmc/actions/RunPendingScriptsSearchResultAction.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/lib/.lastupdate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/project.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc-items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc-items.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc-spring.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc.build.number: -------------------------------------------------------------------------------- 1 | version=1.5.5 2 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc/arecodeploymentscriptshmc-hmctestclasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc/arecodeploymentscriptshmc-hmctestclasses.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc/arecodeploymentscriptshmc-webtestclasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc/arecodeploymentscriptshmc-webtestclasses.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc/sap-hybris-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/resources/arecodeploymentscriptshmc/sap-hybris-platform.png -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/resources/localization/arecodeploymentscriptshmc-locales_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/resources/localization/arecodeploymentscriptshmc-locales_de.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/resources/localization/arecodeploymentscriptshmc-locales_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/resources/localization/arecodeploymentscriptshmc-locales_en.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/resources/localization/arecodeploymentscriptshmc-locales_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/resources/localization/arecodeploymentscriptshmc-locales_es.properties -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/ruleset.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/src/org/areco/ecommerce/deploymentscripts/hmc/constants/ArecodeploymentscriptshmcConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/src/org/areco/ecommerce/deploymentscripts/hmc/constants/ArecodeploymentscriptshmcConstants.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/src/org/areco/ecommerce/deploymentscripts/hmc/jalo/ArecodeploymentscriptshmcManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/src/org/areco/ecommerce/deploymentscripts/hmc/jalo/ArecodeploymentscriptshmcManager.java -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/testsrc/org/areco/ecommerce/deploymentscripts/hmc/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/src/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/404.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/404.jsp -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/405.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/405.jsp -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/500.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/500.jsp -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/config/arecodeploymentscriptshmc-spring-mvc-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/config/arecodeploymentscriptshmc-spring-mvc-config.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/config/arecodeploymentscriptshmc-spring-security-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/config/arecodeploymentscriptshmc-spring-security-config.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/config/arecodeploymentscriptshmc-web-app-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/config/arecodeploymentscriptshmc-web-app-config.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/external-dependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/external-dependencies.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/ibm-web-ext.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/ibm-web-ext.xmi -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/lib/.lastupdate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/lib/displaytag-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/lib/displaytag-1.2.jar -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/lib/jstl-impl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/lib/jstl-impl-1.2.jar -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/views/welcome.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/views/welcome.jsp -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/WEB-INF/web.xml -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/login.jsp -------------------------------------------------------------------------------- /hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/static/arecodeploymentscriptshmc-webapp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/bin/custom/arecodeploymentscriptshmc/web/webroot/static/arecodeploymentscriptshmc-webapp.css -------------------------------------------------------------------------------- /hybris/config4.8/local.properties.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/config4.8/local.properties.template -------------------------------------------------------------------------------- /hybris/config4.8/localextensions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/config4.8/localextensions.xml.template -------------------------------------------------------------------------------- /hybris/config5.x/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/config5.x/.directory -------------------------------------------------------------------------------- /hybris/config5.x/local.properties.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/config5.x/local.properties.template -------------------------------------------------------------------------------- /hybris/config5.x/localextensions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/config5.x/localextensions.xml.template -------------------------------------------------------------------------------- /hybris/config6.x/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/config6.x/.classpath -------------------------------------------------------------------------------- /hybris/config6.x/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/config6.x/.project -------------------------------------------------------------------------------- /hybris/config6.x/local.properties.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/config6.x/local.properties.template -------------------------------------------------------------------------------- /hybris/config6.x/localextensions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybris/config6.x/localextensions.xml.template -------------------------------------------------------------------------------- /hybrisserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/hybrisserver.sh -------------------------------------------------------------------------------- /idea-module-files/advancedsavedquery.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/advancedsavedquery.iml -------------------------------------------------------------------------------- /idea-module-files/arecoDeploymentScriptsManager.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/arecoDeploymentScriptsManager.iml -------------------------------------------------------------------------------- /idea-module-files/arecodeploymentscriptsbackoffice.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/arecodeploymentscriptsbackoffice.iml -------------------------------------------------------------------------------- /idea-module-files/auditreportservices.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/auditreportservices.iml -------------------------------------------------------------------------------- /idea-module-files/backoffice.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/backoffice.iml -------------------------------------------------------------------------------- /idea-module-files/catalog.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/catalog.iml -------------------------------------------------------------------------------- /idea-module-files/comments.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/comments.iml -------------------------------------------------------------------------------- /idea-module-files/commons.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/commons.iml -------------------------------------------------------------------------------- /idea-module-files/config.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/config.iml -------------------------------------------------------------------------------- /idea-module-files/core.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/core.iml -------------------------------------------------------------------------------- /idea-module-files/deliveryzone.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/deliveryzone.iml -------------------------------------------------------------------------------- /idea-module-files/europe1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/europe1.iml -------------------------------------------------------------------------------- /idea-module-files/hac.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/hac.iml -------------------------------------------------------------------------------- /idea-module-files/impex.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/impex.iml -------------------------------------------------------------------------------- /idea-module-files/maintenanceweb.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/maintenanceweb.iml -------------------------------------------------------------------------------- /idea-module-files/mediaweb.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/mediaweb.iml -------------------------------------------------------------------------------- /idea-module-files/oauth2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/oauth2.iml -------------------------------------------------------------------------------- /idea-module-files/paymentstandard.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/paymentstandard.iml -------------------------------------------------------------------------------- /idea-module-files/platform.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/platform.iml -------------------------------------------------------------------------------- /idea-module-files/platformbackoffice.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/platformbackoffice.iml -------------------------------------------------------------------------------- /idea-module-files/platformservices.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/platformservices.iml -------------------------------------------------------------------------------- /idea-module-files/processing.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/processing.iml -------------------------------------------------------------------------------- /idea-module-files/scripting.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/scripting.iml -------------------------------------------------------------------------------- /idea-module-files/testweb.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/testweb.iml -------------------------------------------------------------------------------- /idea-module-files/validation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/validation.iml -------------------------------------------------------------------------------- /idea-module-files/workflow.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/idea-module-files/workflow.iml -------------------------------------------------------------------------------- /integration_tests_with_ant/1_init_on_oracle/99-local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/1_init_on_oracle/99-local.properties -------------------------------------------------------------------------------- /integration_tests_with_ant/1_init_on_oracle/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/1_init_on_oracle/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests_with_ant/1_init_on_oracle/runTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/1_init_on_oracle/runTest.sh -------------------------------------------------------------------------------- /integration_tests_with_ant/1_init_on_oracle/runTest.stoppingContainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/1_init_on_oracle/runTest.stoppingContainer.sh -------------------------------------------------------------------------------- /integration_tests_with_ant/2_init_on_mysql/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/2_init_on_mysql/.env.sample -------------------------------------------------------------------------------- /integration_tests_with_ant/2_init_on_mysql/99-local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/2_init_on_mysql/99-local.properties -------------------------------------------------------------------------------- /integration_tests_with_ant/2_init_on_mysql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/2_init_on_mysql/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests_with_ant/2_init_on_mysql/runTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/2_init_on_mysql/runTest.sh -------------------------------------------------------------------------------- /integration_tests_with_ant/3_init_on_mssql/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/3_init_on_mssql/.env.sample -------------------------------------------------------------------------------- /integration_tests_with_ant/3_init_on_mssql/99-local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/3_init_on_mssql/99-local.properties -------------------------------------------------------------------------------- /integration_tests_with_ant/3_init_on_mssql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/3_init_on_mssql/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests_with_ant/3_init_on_mssql/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/3_init_on_mssql/docker/Dockerfile -------------------------------------------------------------------------------- /integration_tests_with_ant/3_init_on_mssql/docker/configure-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/3_init_on_mssql/docker/configure-db.sh -------------------------------------------------------------------------------- /integration_tests_with_ant/3_init_on_mssql/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/3_init_on_mssql/docker/entrypoint.sh -------------------------------------------------------------------------------- /integration_tests_with_ant/3_init_on_mssql/docker/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/3_init_on_mssql/docker/setup.sql -------------------------------------------------------------------------------- /integration_tests_with_ant/3_init_on_mssql/runTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/3_init_on_mssql/runTest.sh -------------------------------------------------------------------------------- /integration_tests_with_ant/common/docker_checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/common/docker_checks.sh -------------------------------------------------------------------------------- /integration_tests_with_ant/common/run_test_base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/common/run_test_base.sh -------------------------------------------------------------------------------- /integration_tests_with_ant/dbdriver/mssql-jdbc-11.2.3.jre17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/dbdriver/mssql-jdbc-11.2.3.jre17.jar -------------------------------------------------------------------------------- /integration_tests_with_ant/dbdriver/mysql-connector-j-8.0.32.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/dbdriver/mysql-connector-j-8.0.32.jar -------------------------------------------------------------------------------- /integration_tests_with_ant/dbdriver/ojdbc11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/dbdriver/ojdbc11.jar -------------------------------------------------------------------------------- /integration_tests_with_ant/utils/wait-for-container-with-healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/utils/wait-for-container-with-healthcheck.sh -------------------------------------------------------------------------------- /integration_tests_with_ant/utils/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/integration_tests_with_ant/utils/wait-for-it.sh -------------------------------------------------------------------------------- /intellij-idea-settings/CodeStyle.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /intellij-idea-settings/intellij_keymaps_and_live_templates.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/intellij-idea-settings/intellij_keymaps_and_live_templates.jar -------------------------------------------------------------------------------- /intellij-idea-settings/settings.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/intellij-idea-settings/settings.jar -------------------------------------------------------------------------------- /qa/build_qa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/qa/build_qa.xml -------------------------------------------------------------------------------- /qa/build_qa_checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/qa/build_qa_checkstyle.xml -------------------------------------------------------------------------------- /qa/build_qa_jacoco.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/qa/build_qa_jacoco.xml -------------------------------------------------------------------------------- /qa/build_qa_pmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/qa/build_qa_pmd.xml -------------------------------------------------------------------------------- /qa/build_qa_spotbugs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/qa/build_qa_spotbugs.xml -------------------------------------------------------------------------------- /qa/checkstyle-simple.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/qa/checkstyle-simple.xsl -------------------------------------------------------------------------------- /qa/checkstyle_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/qa/checkstyle_checks.xml -------------------------------------------------------------------------------- /qa/pmd_ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/qa/pmd_ruleset.xml -------------------------------------------------------------------------------- /qa/spotbugs_excluded_classes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/qa/spotbugs_excluded_classes.xml -------------------------------------------------------------------------------- /releasePreparation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/releasePreparation.txt -------------------------------------------------------------------------------- /screenshots/screetshotBackofficeExecutions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/screenshots/screetshotBackofficeExecutions.png -------------------------------------------------------------------------------- /screenshots/screetshotBackofficeExecutionsWithError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/screenshots/screetshotBackofficeExecutionsWithError.png -------------------------------------------------------------------------------- /screenshots/screetshotBackofficeGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/screenshots/screetshotBackofficeGroup.png -------------------------------------------------------------------------------- /screenshots/screetshotHmcRunPendingScripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/screenshots/screetshotHmcRunPendingScripts.png -------------------------------------------------------------------------------- /setantenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/setantenv.bat -------------------------------------------------------------------------------- /setantenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arobirosa/areco-deployment-script-manager/HEAD/setantenv.sh --------------------------------------------------------------------------------