[bq] 0.2 introduce integration tests for writers

This commit is contained in:
Volodymyr
2022-12-22 13:38:16 +02:00
committed by GitHub
parent 79465739ce
commit 760cde444a
10 changed files with 360 additions and 54 deletions

View File

@@ -51,6 +51,7 @@
<!-- Dependent on Spring Batch core -->
<java.version>17</java.version>
<logback.version>1.4.5</logback.version>
</properties>
<dependencies>
@@ -96,6 +97,25 @@
<version>4.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.6</version>
<scope>test</scope>
</dependency>
</dependencies>
@@ -117,6 +137,12 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<includes>
<!-- Integration tests are omitted because they are designed to be run locally -->
<include>/unit</include>
</includes>
</configuration>
</plugin>
<!-- Generate javadoc and source jars -->