Skip to content

Commit 93e86d0

Browse files
committed
Added H2 for testing
1 parent 8dd58d6 commit 93e86d0

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

backend/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@
4747
<artifactId>mapstruct</artifactId>
4848
<version>1.5.2.Final</version>
4949
</dependency>
50+
<dependency>
51+
<groupId>com.h2database</groupId>
52+
<artifactId>h2</artifactId>
53+
<scope>test</scope>
54+
</dependency>
5055
<dependency>
5156
<groupId>org.springframework.boot</groupId>
5257
<artifactId>spring-boot-starter-test</artifactId>
@@ -66,6 +71,10 @@
6671

6772
<build>
6873
<plugins>
74+
<plugin>
75+
<groupId>org.springframework.boot</groupId>
76+
<artifactId>spring-boot-maven-plugin</artifactId>
77+
</plugin>
6978
<plugin>
7079
<groupId>org.apache.maven.plugins</groupId>
7180
<artifactId>maven-compiler-plugin</artifactId>

backend/src/test/java/com/netz00/hibernatesearch6example/HibernateSearch6ExampleApplicationTests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
package com.netz00.hibernatesearch6example;
22

3+
import org.junit.jupiter.api.Disabled;
34
import org.junit.jupiter.api.Test;
45
import org.springframework.boot.test.context.SpringBootTest;
56

67
@SpringBootTest
8+
@Disabled
79
class HibernateSearch6ExampleApplicationTests {
810

911
@Test

0 commit comments

Comments
 (0)