|
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>com.cbfacademy</groupId> |
| 7 | + <artifactId>spring-boot</artifactId> |
| 8 | + <version>1.0.0</version> |
| 9 | + <packaging>pom</packaging> |
| 10 | + |
| 11 | + <name>spring-boot</name> |
| 12 | + <url>https://codingblackfemales.com/academy</url> |
| 13 | + |
| 14 | + <properties> |
| 15 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | + <maven.compiler.source>21</maven.compiler.source> |
| 17 | + <maven.compiler.target>21</maven.compiler.target> |
| 18 | + <java.version>21</java.version> |
| 19 | + <junit.jupiter.version>5.9.0</junit.jupiter.version> |
| 20 | + <junit.platform.version>1.9.0</junit.platform.version> |
| 21 | + </properties> |
| 22 | + |
| 23 | + <dependencies> |
| 24 | + <dependency> |
| 25 | + <groupId>org.junit.jupiter</groupId> |
| 26 | + <artifactId>junit-jupiter-api</artifactId> |
| 27 | + <version>${junit.jupiter.version}</version> |
| 28 | + <scope>test</scope> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>org.junit.jupiter</groupId> |
| 32 | + <artifactId>junit-jupiter-engine</artifactId> |
| 33 | + <version>${junit.jupiter.version}</version> |
| 34 | + <scope>test</scope> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>org.junit.jupiter</groupId> |
| 38 | + <artifactId>junit-jupiter-params</artifactId> |
| 39 | + <version>${junit.jupiter.version}</version> |
| 40 | + <scope>test</scope> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>org.hamcrest</groupId> |
| 44 | + <artifactId>hamcrest-all</artifactId> |
| 45 | + <version>1.3</version> |
| 46 | + <scope>test</scope> |
| 47 | + </dependency> |
| 48 | + </dependencies> |
| 49 | + |
| 50 | + <build> |
| 51 | + <pluginManagement> |
| 52 | + <plugins> |
| 53 | + <plugin> |
| 54 | + <artifactId>maven-surefire-plugin</artifactId> |
| 55 | + <version>3.0.0</version> |
| 56 | + <dependencies> |
| 57 | + <dependency> |
| 58 | + <groupId>org.junit.jupiter</groupId> |
| 59 | + <artifactId>junit-jupiter-engine</artifactId> |
| 60 | + <version>${junit.jupiter.version}</version> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>me.fabriciorby</groupId> |
| 64 | + <artifactId>maven-surefire-junit5-tree-reporter</artifactId> |
| 65 | + <version>1.1.0</version> |
| 66 | + </dependency> |
| 67 | + </dependencies> |
| 68 | + <configuration> |
| 69 | + <includes> |
| 70 | + <include>**/*.java</include> |
| 71 | + </includes> |
| 72 | + <reportFormat>plain</reportFormat> |
| 73 | + <consoleOutputReporter> |
| 74 | + <disable>true</disable> |
| 75 | + </consoleOutputReporter> |
| 76 | + <statelessTestsetInfoReporter |
| 77 | + implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporterUnicode"/> |
| 78 | + </configuration> |
| 79 | + </plugin> |
| 80 | + </plugins> |
| 81 | + </pluginManagement> |
| 82 | + </build> |
| 83 | + |
| 84 | + <modules> |
| 85 | + <module>software-design</module> |
| 86 | + <module>rest-api</module> |
| 87 | + </modules> |
| 88 | +</project> |
0 commit comments