概要
やりたいことは以下
Sping Bootプロジェクトのmvn test
を実行したときにSpockのUnit Testを実行させたい。
サンプルを見たい方はこちら→https://github.com/yoghurt1131/springboot-spock-maven
必要なdependency
groovy-all: groovy使うのに必要なライブラリ全部入り
spock-core: Spockを使うのに必要なライブラリ
spock-spring: SpringのDI周りのテストでSpockを使うのに必要なライブラリ
必要なplugin
gmavenplus-plugin: GroovyファイルをJavaファイルにコンパイルするのに利用
maven-surefire-plugin: *Spec.javaで終わるファイルをmvn test
対象に含める
pom.xml
最終的なpom.xmlは以下の通り
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>dev.yoghurt1131</groupId>
<artifactId>springboot-spock-maven</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>springboot-spock-maven</name>
<description>Sample project of springboot, spock and maven</description>
<properties>
<java.version>1.8</java.version>
<spock.version>1.2-groovy-2.5</spock.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
<version>${spock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-spring</artifactId>
<version>${spock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.5.6</version>
<type>pom</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>1.6.2</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>compileTests</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<useFile>false</useFile>
<includes>
<include>**/*Spec.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>