1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+
7
+ <groupId >com.github.romankh3</groupId >
8
+ <artifactId >maven-template-repository</artifactId >
9
+ <version >1.0-SNAPSHOT</version >
10
+ <packaging >jar</packaging >
11
+
12
+ <name >Maven Repository Template</name >
13
+
14
+ <url >https://github.com/template-repository/maven-template-repository</url >
15
+
16
+ <licenses >
17
+ <license >
18
+ <name >The Apache Software License, Version 2.0</name >
19
+ <url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
20
+ </license >
21
+ </licenses >
22
+
23
+ <properties >
24
+ <mockito .version>2.26.0</mockito .version>
25
+ <junit .version>5.5.2</junit .version>
26
+ <maven .compiler.source>1.8</maven .compiler.source>
27
+ <maven .compiler.target>1.8</maven .compiler.target>
28
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
29
+ <javadoc .plugin.version>3.1.1</javadoc .plugin.version>
30
+ <source .plugin.version>3.2.0</source .plugin.version>
31
+ <surefire .plugin.version>2.22.2</surefire .plugin.version>
32
+ </properties >
33
+
34
+ <dependencies >
35
+ <dependency >
36
+ <groupId >org.mockito</groupId >
37
+ <artifactId >mockito-core</artifactId >
38
+ <version >${mockito.version} </version >
39
+ <scope >test</scope >
40
+ </dependency >
41
+ <dependency >
42
+ <groupId >org.junit.jupiter</groupId >
43
+ <artifactId >junit-jupiter-api</artifactId >
44
+ <version >${junit.version} </version >
45
+ <scope >test</scope >
46
+ </dependency >
47
+ <dependency >
48
+ <groupId >org.junit.jupiter</groupId >
49
+ <artifactId >junit-jupiter-engine</artifactId >
50
+ <version >${junit.version} </version >
51
+ <scope >test</scope >
52
+ </dependency >
53
+ </dependencies >
54
+
55
+ <build >
56
+ <plugins >
57
+ <plugin >
58
+ <groupId >org.apache.maven.plugins</groupId >
59
+ <artifactId >maven-source-plugin</artifactId >
60
+ <version >${source.plugin.version} </version >
61
+ <executions >
62
+ <execution >
63
+ <id >attach-sources</id >
64
+ <goals >
65
+ <goal >jar</goal >
66
+ </goals >
67
+ </execution >
68
+ </executions >
69
+ </plugin >
70
+ <plugin >
71
+ <groupId >org.apache.maven.plugins</groupId >
72
+ <artifactId >maven-surefire-plugin</artifactId >
73
+ <version >${surefire.plugin.version} </version >
74
+ </plugin >
75
+ </plugins >
76
+ </build >
77
+
78
+ </project >
0 commit comments