Skip to content

Commit

Permalink
add serial config required for oracle driver (#4961)
Browse files Browse the repository at this point in the history
  • Loading branch information
arjav-desai committed Sep 27, 2022
1 parent 56f94d5 commit 471a721
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ docker run --rm --name xe -p 1521:1521 -p 8888:8080 -e ORACLE_PWD=oracle wnamele
<includes>
<include>src/main/java/**</include>
<include>src/*/resources/*/persistence.xml.mustache</include>
<include if="${server} == 'oracledb'">src/*/resources/**/serial-config.properties</include>
</includes>
</templates>
<model>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pattern=oracle.sql.converter.*;oracle.i18n.text.converter.*
3 changes: 3 additions & 0 deletions archetypes/helidon/src/main/archetype/se/custom/database.xml
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,9 @@ docker run --rm --name mongo -p 27017:27017 mongo
<include>src/*/java/**/*.java.mustache</include>
<include>src/*/resources/**/*</include>
</includes>
<excludes>
<exclude if="${server} != 'oracledb'">src/*/resources/**/serial-config.properties</exclude>
</excludes>
</templates>
<model>
<list key="native-sections" if="${docker}">
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pattern=oracle.sql.converter.*;oracle.i18n.text.converter.*

0 comments on commit 471a721

Please sign in to comment.