-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[1.40.x] KOGITO-9416 - Include kogito-ddl in prod profile (#1790)
* KOGITO-9416 - Include kogito-ddl in prod profile (#1789) * Update persistence-commons/kogito-ddl/pom.xml --------- Co-authored-by: Cristiano Nicolai <[email protected]>
- Loading branch information
1 parent
6555893
commit 847a382
Showing
4 changed files
with
96 additions
and
44 deletions.
There are no files selected for viewing
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
35 changes: 35 additions & 0 deletions
35
persistence-commons/kogito-ddl/src/assembly/productized-multi-repo-zip.xml
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,35 @@ | ||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd"> | ||
<id>db-scripts</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<dependencySets> | ||
<dependencySet> | ||
<unpack>true</unpack> | ||
<outputDirectory>.</outputDirectory> | ||
<includes> | ||
<include>org.kie.kogito:kogito-ddl-runtimes:zip:db-scripts</include> | ||
</includes> | ||
</dependencySet> | ||
</dependencySets> | ||
<fileSets> | ||
<fileSet> | ||
<directory>${project.root.dir}/data-index/data-index-storage/data-index-storage-postgresql/src/main/resources/db/migration</directory> | ||
<outputDirectory>postgresql/data-index</outputDirectory> | ||
<includes> | ||
<include>*.sql</include> | ||
</includes> | ||
</fileSet> | ||
<!-- Job Service DDLs - Flyway scripts --> | ||
<fileSet> | ||
<directory>${project.root.dir}/jobs-service/jobs-service-postgresql-common/src/main/resources/db/jobs-service</directory> | ||
<outputDirectory>postgresql/jobs-service</outputDirectory> | ||
<includes> | ||
<include>*.sql</include> | ||
</includes> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
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