-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #449 from DependencyTrack/liquibase-additions
Additions to Liquibase integration
- Loading branch information
Showing
26 changed files
with
1,096 additions
and
1,136 deletions.
There are no files selected for viewing
32 changes: 0 additions & 32 deletions
32
src/main/java/org/dependencytrack/persistence/ShedlockInitializer.java
This file was deleted.
Oops, something went wrong.
46 changes: 0 additions & 46 deletions
46
src/main/java/org/dependencytrack/persistence/StoredProcedureInitializer.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version="1.1" encoding="UTF-8" standalone="no"?> | ||
<databaseChangeLog | ||
objectQuotingStrategy="QUOTE_ALL_OBJECTS" | ||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | ||
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext | ||
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd | ||
http://www.liquibase.org/xml/ns/dbchangelog | ||
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd"> | ||
<changeSet id="function_cvssv2-to-severity" author="[email protected]" runOnChange="true"> | ||
<createProcedure path="procedures/function_cvssv2-to-severity.sql" relativeToChangelogFile="true"/> | ||
</changeSet> | ||
<changeSet id="function_cvssv3-to-severity" author="[email protected]" runOnChange="true"> | ||
<createProcedure path="procedures/function_cvssv3-to-severity.sql" relativeToChangelogFile="true"/> | ||
</changeSet> | ||
<changeSet id="function_calc-severity" author="[email protected]" runOnChange="true"> | ||
<createProcedure path="procedures/function_calc-severity.sql" relativeToChangelogFile="true"/> | ||
</changeSet> | ||
<changeSet id="function_calc-risk-score" author="[email protected]" runOnChange="true"> | ||
<createProcedure path="procedures/function_calc-risk-score.sql" relativeToChangelogFile="true"/> | ||
</changeSet> | ||
<changeSet id="procedure_update-component-metrics" author="[email protected]" runOnChange="true"> | ||
<createProcedure path="procedures/procedure_update-component-metrics.sql" relativeToChangelogFile="true"/> | ||
</changeSet> | ||
<changeSet id="procedure_update-project-metrics" author="[email protected]" runOnChange="true"> | ||
<createProcedure path="procedures/procedure_update-project-metrics.sql" relativeToChangelogFile="true"/> | ||
</changeSet> | ||
<changeSet id="procedure_update-portfolio-metrics" author="[email protected]" runOnChange="true"> | ||
<createProcedure path="procedures/procedure_update-portfolio-metrics.sql" relativeToChangelogFile="true"/> | ||
</changeSet> | ||
</databaseChangeLog> |
Oops, something went wrong.