[jOOQ/jOOQ#11066] Fixed jooq-jpa-example pom.xml dependencies

This commit is contained in:
Lukas Eder 2020-12-09 15:53:08 +01:00
parent 2d3b46394d
commit 519e9ae501

View File

@ -46,6 +46,10 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
@ -143,6 +147,13 @@
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<version>${javax.persistence-api.version}</version>
</dependency>
</dependencies>
</plugin>
<!-- Run the JavaFX application right after building -->
@ -159,6 +170,7 @@
</goals>
<configuration>
<mainClass>org.jooq.example.jpa.JPAExample</mainClass>
<classpathScope>compile</classpathScope>
</configuration>
</execution>
</executions>