<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>fr.gouv.vitamui.commons</groupId> <artifactId>commons-test</artifactId> <name>VITAMUI Commons Test</name> <packaging>jar</packaging> <description>VITAMUI Commons TEST</description> <parent> <groupId>fr.gouv.vitamui</groupId> <artifactId>commons-parent</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <dependencies> <!-- VITAMUI --> <dependency> <groupId>fr.gouv.vitamui.commons</groupId> <artifactId>commons-utils</artifactId> </dependency> <!-- SPRING --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> <scope>provided</scope> </dependency> <!-- UTILS --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <!-- TEST --> <dependency> <groupId>fr.gouv.vitamui.commons</groupId> <artifactId>commons-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>fr.gouv.vitamui.commons</groupId> <artifactId>commons-rest</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-easymock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>