I don’t know what tutorial you are following, but the SQLiteDialect
is a community dialect, part of the hibernate-community-dialects
module: https://github.com/hibernate/hibernate-orm/blob/main/hibernate-community-dialects/src/main/java/org/hibernate/community/dialect/SQLiteDialect.java
So if you want to use that, you’ll have to use this dependency:
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-community-dialects</artifactId>
<version>6.2.7.Final</version>
</dependency>
and configure the dialect like <property name="dialect">org.hibernate.community.dialect.SQLiteDialect</property>