Skip to content

Commit 1d63899

Browse files
committed
Adding H2 driver
1 parent f03d368 commit 1d63899

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
java-version: 11
1717
- name: Build native with Maven
18-
run: mvn -B package -Pnative -Dquarkus.native.container-build=true -Dquarkus.datasource.driver=org.postgresql.Driver
18+
run: mvn -B package -Pnative -Dquarkus.native.container-build=true
1919
- name: Upload target for next job
2020
uses: actions/upload-artifact@v1
2121
with:

pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@
6868
<groupId>io.quarkus</groupId>
6969
<artifactId>quarkus-jdbc-postgresql</artifactId>
7070
</dependency>
71+
<dependency>
72+
<groupId>io.quarkus</groupId>
73+
<artifactId>quarkus-jdbc-h2</artifactId>
74+
</dependency>
7175
</dependencies>
7276
<build>
7377
<plugins>

0 commit comments

Comments
 (0)