forked from dbelob/guess-game
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
195 lines (183 loc) · 8.26 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?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>guess-game</groupId>
<artifactId>guess-game-parent</artifactId>
<version>3.2.44-SNAPSHOT</version>
<packaging>pom</packaging>
<name>GuessGame Parent</name>
<properties>
<app.finalName>guess-game</app.finalName>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.javaVersion>21</project.build.javaVersion>
<allure.plugin.version>2.15.2</allure.plugin.version>
<assembly.plugin.version>3.7.1</assembly.plugin.version>
<clean.plugin.version>3.4.1</clean.plugin.version>
<compiler.plugin.version>3.14.0</compiler.plugin.version>
<frontend.plugin.version>1.15.1</frontend.plugin.version>
<jacoco.plugin.version>0.8.12</jacoco.plugin.version>
<release.plugin.version>3.1.1</release.plugin.version>
<resources.plugin.version>3.3.1</resources.plugin.version>
<sonar.plugin.version>5.0.0.4389</sonar.plugin.version>
<surefire.plugin.version>3.5.2</surefire.plugin.version>
<war.plugin.version>3.4.0</war.plugin.version>
<allure-junit5.version>2.29.1</allure-junit5.version>
<aspectj.version>1.9.22.1</aspectj.version>
<kumo.version>1.28</kumo.version>
<imageio.version>3.12.0</imageio.version>
<spring-boot.version>3.4.3</spring-boot.version>
<webp-imageio.version>0.1.6</webp-imageio.version>
<node.version>v22.14.0</node.version>
<ng.build.arguments>-- --configuration=production</ng.build.arguments>
<sonar.coverage.exclusions>
**/guess/config/**/*,
**/guess/domain/**/*,
**/guess/dto/**/*,
**/guess/util/yaml/Custom*.*,
**/*Exception.*,
**/guess/App.*
</sonar.coverage.exclusions>
<sonar.cpd.exclusions>**/guess/domain/source/cms/contentful/**/*Fields*.*</sonar.cpd.exclusions>
<sonar.exclusions>**/org/yaml/snakeyaml/**/*</sonar.exclusions>
</properties>
<modules>
<module>guess-game-server</module>
<module>guess-game-web</module>
<module>guess-game-distrib</module>
</modules>
<build>
<finalName>guess-game</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>${clean.plugin.version}</version>
<configuration>
<filesets>
<fileset>
<directory>logs</directory>
<followSymlinks>false</followSymlinks>
</fileset>
<fileset>
<directory>output</directory>
<followSymlinks>false</followSymlinks>
</fileset>
<fileset>
<directory>.allure</directory>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler.plugin.version}</version>
<configuration>
<source>${project.build.javaVersion}</source>
<target>${project.build.javaVersion}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<parameters>true</parameters>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${war.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${release.plugin.version}</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
<!-- Tests -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.plugin.version}</version>
<configuration>
<excludes>
<exclude>guess/config/**/*</exclude>
<exclude>guess/domain/**/*</exclude>
<exclude>guess/dto/**/*</exclude>
<exclude>guess/util/yaml/Custom*.*</exclude>
<exclude>org/yaml/snakeyaml/**/*</exclude>
<exclude>**/*Exception.*</exclude>
<exclude>guess/App.*</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<!-- attached to Maven test phase -->
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.plugin.version}</version>
<configuration>
<argLine>
@{argLine}
-javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
</argLine>
<reportFormat>plain</reportFormat>
<includes>
<include>**/*Test*.java</include>
<include>**/*IT*.java</include>
</includes>
</configuration>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectj.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-maven</artifactId>
<version>${allure.plugin.version}</version>
<configuration>
<allureDownloadUrl>https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/%s/allure-commandline-%s.zip</allureDownloadUrl>
<reportVersion>${allure-junit5.version}</reportVersion>
</configuration>
</plugin>
<!-- SonarQube analysis -->
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>${sonar.plugin.version}</version>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${frontend.plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<scm>
<connection>scm:git:https://github.com/JugruGroup/guess-game</connection>
<developerConnection>scm:git:https://github.com/JugruGroup/guess-game</developerConnection>
<tag>HEAD</tag>
</scm>
</project>