2021-02-25 23:00:21 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-17 10:53:43 -04:00
|
|
|
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2021-02-25 23:00:21 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-05-17 10:53:43 -04:00
|
|
|
<artifactId>zerocode</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
2021-02-25 23:00:21 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2021-11-04 06:41:12 -04:00
|
|
|
<artifactId>testing-modules</artifactId>
|
2021-02-25 23:00:21 -05:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<version>${spring.boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>${spring.boot.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jsmart</groupId>
|
|
|
|
<artifactId>zerocode-tdd</artifactId>
|
2021-03-24 05:31:09 -04:00
|
|
|
<version>${zerocode-tdd.version}</version>
|
2021-02-25 23:00:21 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2023-02-02 07:25:53 -05:00
|
|
|
<version>${spring.boot.version}</version>
|
2021-02-25 23:00:21 -05:00
|
|
|
<configuration>
|
|
|
|
<profiles>
|
|
|
|
<profile>it</profile>
|
|
|
|
</profiles>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>pre-integration-test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>start</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<skip>${skip.it}</skip>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>post-integration-test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>stop</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<skip>${skip.it}</skip>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
2021-03-24 05:31:09 -04:00
|
|
|
<version>${maven-failsafe-plugin.version}</version>
|
2021-02-25 23:00:21 -05:00
|
|
|
<configuration>
|
|
|
|
<skip>${skip.it}</skip>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.surefire</groupId>
|
|
|
|
<artifactId>surefire-junit47</artifactId>
|
2021-03-24 05:31:09 -04:00
|
|
|
<version>${surefire-junit47.version}</version>
|
2021-02-25 23:00:21 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
2021-03-24 05:31:09 -04:00
|
|
|
<surefire-junit47.version>3.0.0-M5</surefire-junit47.version>
|
2021-02-25 23:00:21 -05:00
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
<spring.boot.version>2.4.2</spring.boot.version>
|
|
|
|
<skip.it>true</skip.it>
|
2021-03-24 05:31:09 -04:00
|
|
|
<zerocode-tdd.version>1.3.27</zerocode-tdd.version>
|
2021-02-25 23:00:21 -05:00
|
|
|
</properties>
|
|
|
|
|
2021-05-17 10:53:43 -04:00
|
|
|
</project>
|