{"id":18399201,"url":"https://github.com/marky-mark/liquibase","last_synced_at":"2025-04-12T15:59:16.983Z","repository":{"id":2224307,"uuid":"3175380","full_name":"marky-mark/liquibase","owner":"marky-mark","description":null,"archived":false,"fork":false,"pushed_at":"2012-01-14T00:21:03.000Z","size":96,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-16T02:44:57.208Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marky-mark.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-01-13T23:59:19.000Z","updated_at":"2014-12-02T13:50:39.000Z","dependencies_parsed_at":"2022-07-31T12:07:59.125Z","dependency_job_id":null,"html_url":"https://github.com/marky-mark/liquibase","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marky-mark%2Fliquibase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marky-mark%2Fliquibase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marky-mark%2Fliquibase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marky-mark%2Fliquibase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marky-mark","download_url":"https://codeload.github.com/marky-mark/liquibase/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248593204,"owners_count":21130308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T02:26:05.761Z","updated_at":"2025-04-12T15:59:16.953Z","avatar_url":"https://github.com/marky-mark.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\nBefore executing liquibase.. go into mysql db and create a db\n'liquibaseTestDB'\n\n---------------------------------------------------------------------------\n\nThis project is to demonstrate liquibase and is Setup so that the only way \nto update the database is to go into the module 'liquibase' and run the \nfollowing command:\n\nmvn liquibase:update\n\nThis is achievable due to the Main.java in the package com.test.db\n\n---------------------------------------------------------------------------\n\n\nThe 2nd way to achieve liquibase (To be part of the 'mvn clean package')\nmake the following changes\n\n*In the pom.xml\n\n\u003cbuild\u003e\n    \u003cfinalName\u003eliquibase\u003c/finalName\u003e\n    \u003cplugins\u003e\n       \u003cplugin\u003e\n         \u003cgroupId\u003eorg.liquibase\u003c/groupId\u003e\n         \u003cartifactId\u003eliquibase-maven-plugin\u003c/artifactId\u003e\n         \u003cversion\u003e2.0.1\u003c/version\u003e\n         \u003cexecutions\u003e\n           \u003cexecution\u003e\n             \u003cphase\u003eprocess-resources\u003c/phase\u003e\n             \u003cconfiguration\u003e\n\n\t      \u003cchangeLogFile\u003echangelog.xml\u003c/changeLogFile\u003e\n               \u003cdriver\u003ecom.mysql.jdbc.Driver\u003c/driver\u003e\n               \u003curl\u003ejdbc:mysql://localhost:3306/liquibaseTestDB\u003c/url\u003e\n               \u003cusername\u003eroot\u003c/username\u003e\n               \u003cpassword\u003eroot123\u003c/password\u003e\n             \u003c/configuration\u003e\n             \u003cgoals\u003e\n               \u003cgoal\u003eupdate\u003c/goal\u003e\n             \u003c/goals\u003e\n           \u003c/execution\u003e\n         \u003c/executions\u003e\n      \u003c/plugin\u003e\n    \u003c/plugins\u003e\n  \u003c/build\u003e\n\n*The Main.java may be deleted as it is no longer needed\n\nrunning\n\n'mvn clean package' will create the tables in the db\n\n\n---------------------------------------------------------------------------\n\n\nNOTE: \nOnly if needed\n\n\u003cplugin\u003e\n                \u003cgroupId\u003eorg.apache.maven.plugins\u003c/groupId\u003e\n                \u003cartifactId\u003emaven-shade-plugin\u003c/artifactId\u003e\n                \u003cversion\u003e1.4\u003c/version\u003e\n                \u003cexecutions\u003e\n                    \u003cexecution\u003e\n                        \u003cphase\u003epackage\u003c/phase\u003e\n                        \u003cgoals\u003e\n                            \u003cgoal\u003eshade\u003c/goal\u003e\n                        \u003c/goals\u003e\n                        \u003cconfiguration\u003e\n                            \u003ctransformers\u003e\n                                \u003ctransformer\nimplementation=\"org.apache.maven.plugins.shade.resource.ManifestResourceTransformer\"\u003e\n\n\u003cmainClass\u003ecom.test.db.Main\u003c/mainClass\u003e\n                                \u003c/transformer\u003e\n                            \u003c/transformers\u003e\n                        \u003c/configuration\u003e\n                    \u003c/execution\u003e\n                \u003c/executions\u003e\n            \u003c/plugin\u003e ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarky-mark%2Fliquibase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarky-mark%2Fliquibase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarky-mark%2Fliquibase/lists"}