i have read
and searched the web for: "cannot resolve symbol jdbc" with zero results.
I changed pom.xml but gives Error Dependency 'org.xerial:hsqldb-jdbc:' not found
:
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.3.2</version>
<scope>test</scope>
</dependency>
<!-- bellow is not working (red in IDE): -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>hsqldb-jdbc</artifactId>
<version></version>
<scope>test</scope>
</dependency>
And tried much much more.
What else i could do and try?
So far I had only programmed in finished Spring applications. This should be my first Spring application that I write from the beginning (defaults: Jetty, hsqldb).