|
@@ -0,0 +1,76 @@
|
|
|
|
|
+<?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>pl.dmcs</groupId>
|
|
|
|
|
+ <artifactId>app</artifactId>
|
|
|
|
|
+ <version>1.0</version>
|
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
|
+ <properties>
|
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
+ <java.version>11</java.version>
|
|
|
|
|
+ <junit.jupiter.version>5.9.1</junit.jupiter.version>
|
|
|
|
|
+ <mockito.version>4.8.1</mockito.version>
|
|
|
|
|
+ </properties>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.junit.jupiter</groupId>
|
|
|
|
|
+ <artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
|
+ <version>${junit.jupiter.version}</version>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.mockito</groupId>
|
|
|
|
|
+ <artifactId>mockito-core</artifactId>
|
|
|
|
|
+ <version>${mockito.version}</version>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
+ <version>3.10.1</version>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <source>${java.version}</source>
|
|
|
|
|
+ <target>${java.version}</target>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
+ <version>3.0.0-M7</version>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-site-plugin</artifactId>
|
|
|
|
|
+ <version>4.0.0-M3</version>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
+ <version>3.1.0</version>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <includeEmptyDirs>true</includeEmptyDirs>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ <testResources>
|
|
|
|
|
+ <testResource>
|
|
|
|
|
+ <directory>src/test/resources</directory>
|
|
|
|
|
+ <excludes>
|
|
|
|
|
+ <exclude>**/.gitkeep</exclude>
|
|
|
|
|
+ </excludes>
|
|
|
|
|
+ </testResource>
|
|
|
|
|
+ </testResources>
|
|
|
|
|
+ </build>
|
|
|
|
|
+ <reporting>
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
|
+ <version>3.4.1</version>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ </reporting>
|
|
|
|
|
+</project>
|