Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgrosso committed Aug 1, 2024
1 parent be12989 commit 7f04881
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docker/core/src/main/resources/core-ojson.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
persistence.domain[0].key=Master
persistence.domain[0].jdbcDriver=oracle.jdbc.OracleDriver
persistence.domain[0].jdbcURL=${DB_URL}
persistence.domain[0].schema=${DB_SCHEMA}
persistence.domain[0].dbSchema=${DB_SCHEMA}
persistence.domain[0].dbUsername=${DB_USER}
persistence.domain[0].dbPassword=${DB_PASSWORD}
persistence.domain[0].databasePlatform=org.apache.openjpa.jdbc.sql.OracleDictionary
Expand Down
2 changes: 1 addition & 1 deletion docker/core/src/main/resources/core-oracle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
persistence.domain[0].key=Master
persistence.domain[0].jdbcDriver=oracle.jdbc.OracleDriver
persistence.domain[0].jdbcURL=${DB_URL}
persistence.domain[0].schema=${DB_SCHEMA}
persistence.domain[0].dbSchema=${DB_SCHEMA}
persistence.domain[0].dbUsername=${DB_USER}
persistence.domain[0].dbPassword=${DB_PASSWORD}
persistence.domain[0].databasePlatform=org.apache.openjpa.jdbc.sql.OracleDictionary
Expand Down
2 changes: 1 addition & 1 deletion docker/core/src/main/resources/core-sqlserver.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
persistence.domain[0].key=Master
persistence.domain[0].jdbcDriver=com.microsoft.sqlserver.jdbc.SQLServerDriver
persistence.domain[0].jdbcURL=${DB_URL}
persistence.domain[0].schema=${DB_SCHEMA}
persistence.domain[0].dbSchema=${DB_SCHEMA}
persistence.domain[0].dbUsername=${DB_USER}
persistence.domain[0].dbPassword=${DB_PASSWORD}
persistence.domain[0].databasePlatform=org.apache.openjpa.jdbc.sql.SQLServerDictionary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ persistence.viewsXML=classpath:ojson/views.xml
persistence.domain[0].key=Master
persistence.domain[0].jdbcDriver=oracle.jdbc.OracleDriver
persistence.domain[0].jdbcURL=jdbc:oracle:thin:@${DB_CONTAINER_IP}:1521/XEPDB1
persistence.domain[0].schema=SYNCOPE
persistence.domain[0].dbSchema=SYNCOPE
persistence.domain[0].dbUsername=syncope
persistence.domain[0].dbPassword=syncope
persistence.domain[0].databasePlatform=org.apache.openjpa.jdbc.sql.OracleDictionary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
persistence.domain[0].key=Master
persistence.domain[0].jdbcDriver=oracle.jdbc.OracleDriver
persistence.domain[0].jdbcURL=jdbc:oracle:thin:@${DB_CONTAINER_IP}:1521/XEPDB1
persistence.domain[0].schema=SYNCOPE
persistence.domain[0].dbSchema=SYNCOPE
persistence.domain[0].dbUsername=syncope
persistence.domain[0].dbPassword=syncope
persistence.domain[0].databasePlatform=org.apache.openjpa.jdbc.sql.OracleDictionary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
persistence.domain[0].key=Master
persistence.domain[0].jdbcDriver=com.microsoft.sqlserver.jdbc.SQLServerDriver
persistence.domain[0].jdbcURL=jdbc:sqlserver://${DB_CONTAINER_IP}:1433;databaseName=syncope
persistence.domain[0].schema=dbo
persistence.domain[0].dbSchema=dbo
persistence.domain[0].dbUsername=syncope
persistence.domain[0].dbPassword=Syncope123
persistence.domain[0].databasePlatform=org.apache.openjpa.jdbc.sql.SQLServerDictionary
Expand Down
8 changes: 4 additions & 4 deletions src/main/asciidoc/reference-guide/configuration/dbms.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ This assumes that you have a MariaDB instance running on localhost, listening on

[NOTE]
With the configurations reported below, Apache Syncope will leverage the
https://mariadb.com/kb/en/json_table/^] function.
https://mariadb.com/kb/en/json_table/[JSON_TABLE^] function.

[NOTE]
Apache Syncope {docVersion} is verified with MariaDB server >= {mariadb} and JDBC driver >= {mariadbJDBC}.
Expand Down Expand Up @@ -327,7 +327,7 @@ Create
persistence.domain[0].key=Master
persistence.domain[0].jdbcDriver=oracle.jdbc.OracleDriver
persistence.domain[0].jdbcURL=jdbc:oracle:thin:@localhost:1521:XE
persistence.domain[0].schema=SYNCOPE
persistence.domain[0].dbSchema=SYNCOPE
persistence.domain[0].dbUsername=syncope
persistence.domain[0].dbPassword=syncope
persistence.domain[0].databasePlatform=org.apache.openjpa.jdbc.sql.OracleDictionary
Expand Down Expand Up @@ -382,7 +382,7 @@ persistence.viewsXML=classpath:ojson/views.xml
persistence.domain[0].key=Master
persistence.domain[0].jdbcDriver=oracle.jdbc.OracleDriver
persistence.domain[0].jdbcURL=jdbc:postgresql://${DB_CONTAINER_IP}:5432/syncope?stringtype=unspecified
persistence.domain[0].schema=SYNCOPE
persistence.domain[0].dbSchema=SYNCOPE
persistence.domain[0].dbUsername=syncope
persistence.domain[0].dbPassword=syncope
persistence.domain[0].databasePlatform=org.apache.openjpa.jdbc.sql.OracleDictionary
Expand Down Expand Up @@ -417,7 +417,7 @@ Create
persistence.domain[0].key=Master
persistence.domain[0].jdbcDriver=com.microsoft.sqlserver.jdbc.SQLServerDriver
persistence.domain[0].jdbcURL=jdbc:sqlserver://localhost:1433;databaseName=syncope
persistence.domain[0].schema=dbo
persistence.domain[0].dbSchema=dbo
persistence.domain[0].dbUsername=syncope
persistence.domain[0].dbPassword=Syncope123
persistence.domain[0].databasePlatform=org.apache.openjpa.jdbc.sql.SQLServerDictionary
Expand Down

0 comments on commit 7f04881

Please sign in to comment.