Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
up to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hardingadonis committed Mar 3, 2024
1 parent 91038e2 commit 5483afb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion get_version.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

major_version=0
minor_version=7
minor_version=8
path_version=0

echo "$major_version.$minor_version.$path_version"
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.hardingadonis</groupId>
<artifactId>saledock</artifactId>
<version>0.7.0</version>
<version>0.8.0</version>
<packaging>war</packaging>

<name>Sale Dock - v${project.version}</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config.mysql.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
config.jdbc.url=database
config.jdbc.url=localhost
config.jdbc.database_name=saledock
config.jdbc.user=root
config.jdbc.password=
2 changes: 1 addition & 1 deletion src/main/resources/hibernate.cfg.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<session-factory>
<!-- JDBC Database connection settings -->
<property name="hibernate.connection.driver_class">com.mysql.cj.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://database:3306/saledock?createDatabaseIfNotExist=true</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/saledock?createDatabaseIfNotExist=true</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password"></property>

Expand Down

0 comments on commit 5483afb

Please sign in to comment.