Skip to content

Commit 65a26b8

Browse files
author
zaharchenko
committed
update HSQL port
1 parent 794b097 commit 65a26b8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,15 +161,15 @@ configure(coreModule) {
161161

162162
task createDb(dependsOn: assembleDbScripts, description: 'Creates local database', type: CubaDbCreation) {
163163
dbms = 'hsql'
164-
host = 'localhost:9001'
164+
host = 'localhost:9010'
165165
dbName = 'jpawebapi'
166166
dbUser = 'sa'
167167
dbPassword = ''
168168
}
169169

170170
task updateDb(dependsOn: assembleDbScripts, description: 'Updates local database', type: CubaDbUpdate) {
171171
dbms = 'hsql'
172-
host = 'localhost:9001'
172+
host = 'localhost:9010'
173173
dbName = 'jpawebapi'
174174
dbUser = 'sa'
175175
dbPassword = ''

modules/core/web/META-INF/context.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
maxIdle="2"
2424
maxWaitMillis="5000"
2525
driverClassName="org.hsqldb.jdbc.JDBCDriver"
26-
url="jdbc:hsqldb:hsql://localhost:9001/jpawebapi"
26+
url="jdbc:hsqldb:hsql://localhost:9010/jpawebapi"
2727
username="sa"
2828
password=""/>
2929

0 commit comments

Comments
 (0)