Compare commits

...

2 Commits

Author SHA1 Message Date
Vincent Guillet
4cc46d7ac3 Add 'target/' to .gitignore to exclude build artifacts 2025-05-20 13:46:53 +02:00
Vincent Guillet
7fcdee6e2b remove target output 2025-05-20 13:46:29 +02:00
2 changed files with 1 additions and 22 deletions

1
.gitignore vendored
View File

@@ -27,6 +27,7 @@ dist/
build/ build/
coverage/ coverage/
out/ out/
target/
# Environment and secrets # Environment and secrets
.env .env

View File

@@ -1,22 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="jakarta.persistence.jdbc.driver">com.mysql.cj.jdbc.Driver</property>
<property name="jakarta.persistence.jdbc.url">jdbc:mysql://mysql:3306/testdb?useSSL=false&amp;allowPublicKeyRetrieval=true</property>
<property name="jakarta.persistence.jdbc.user">root</property>
<property name="jakarta.persistence.jdbc.password">root</property>
<property name="hibernate.hbm2ddl.auto">update</property>
<property name="hibernate.show_sql">false</property>
<property name="hibernate.format_sql">true</property>
<mapping class="com.humanbooster.model.User"/>
<mapping class="com.humanbooster.model.Article"/>
<mapping class="com.humanbooster.model.Ad"/>
</session-factory>
</hibernate-configuration>