-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpom.xml
67 lines (58 loc) · 2.85 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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>com.sbrf.reboot</groupId>
<artifactId>home-work</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<!-- https://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html -->
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<!-- https://maven.apache.org/plugins/maven-resources-plugin/examples/encoding.html -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!--
Версии зависимостей.
Всегда выносите их:
1. в секцию properties POM файла для одномодульных maven проектов
2. в секцию properties корневого POM файла для многомодульных maven проектов (они будут наследоваться в подмодулях)
3. в BOM файл если зависимость используется в разных maven проектах
https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#bill-of-materials-bom-poms
-->
<lombok.version>1.18.20</lombok.version>
<junit-jupiter.version>5.7.2</junit-jupiter.version>
<mockito-core.version>3.11.2</mockito-core.version>
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!-- https://maven.apache.org/surefire/maven-surefire-plugin/usage.html -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
</plugins>
</build>
</project>