-
Notifications
You must be signed in to change notification settings - Fork 70
/
pom.xml
221 lines (216 loc) · 9.07 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>ru.mirea.practice</groupId>
<artifactId>algorithms-and-data-structures</artifactId>
<version>2024.1</version>
<packaging>pom</packaging>
<name>algorithms-and-data-structures</name>
<description>Алгоритмы и структуры данных в системах реального времени</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<version.junit>1.11.3</version.junit>
<version.jupiter>5.11.3</version.jupiter>
<version.pmd>6.52.0</version.pmd>
</properties>
<scm>
<connection>scm:git:https://github.com/BasePractice/algorithms-and-data-structures-2024.git</connection>
<url>https://github.com/BasePractice/algorithms-and-data-structures-2024</url>
<developerConnection>scm:git:https://github.com/BasePractice/algorithms-and-data-structures-2024.git
</developerConnection>
<tag>2024.1</tag>
</scm>
<modules>
<module>students/23K0135</module>
<module>students/23K0623</module>
<module>students/0000001</module>
<module>students/23K0093</module>
<module>students/23K0690</module>
<module>students/23K0120</module>
<module>students/23K0143</module>
<module>students/23K0365</module>
<module>students/23K0368</module>
<module>students/23K0754</module>
<module>students/24K0458</module>
<module>students/23K0565</module>
<module>students/23K0350</module>
<module>students/23K1302</module>
<module>students/23K0346</module>
<module>students/24K0459</module>
<module>students/23K0364</module>
<module>students/23K0155</module>
<module>students/23K0114</module>
<module>students/23K0815</module>
<module>students/23K0341</module>
<module>students/23K0823</module>
<module>students/23K0087</module>
<module>students/23K0112</module>
<module>students/23K0351</module>
<module>students/23K0169</module>
<module>students/23K0563</module>
<module>students/23K0116</module>
<module>students/23K0339</module>
<module>students/23K0691</module>
<module>students/23K0089</module>
<module>students/23K0375</module>
<module>students/23K0340</module>
<module>students/23K0354</module>
<module>students/23K0689</module>
<module>students/23F0011</module>
<module>students/23K1234</module>
<module>students/23K0818</module>
<module>students/23K0202</module>
<module>students/23K0130</module>
<module>students/23K0164</module>
<module>students/23K0140</module>
<module>students/23K0505</module>
<module>students/23K0359</module>
<module>students/23K0688</module>
<module>students/23K0355</module>
<module>students/23K0215</module>
<module>students/23K1167</module>
<module>students/23K1226</module>
<module>students/23K9901</module>
<module>students/23K0145</module>
<module>students/23K0186</module>
<module>students/23K0755</module>
<module>students/23K1292</module>
</modules>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-suite-api</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${version.jupiter}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${version.jupiter}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${version.jupiter}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${version.jupiter}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.name}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<target>${maven.compiler.target}</target>
<source>${maven.compiler.source}</source>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.6.0</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.20.0</version>
</dependency>
</dependencies>
<configuration>
<excludes>**/canonical/db/**/*</excludes>
<configLocation>checkstyle.xml</configLocation>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<failOnViolation>true</failOnViolation>
<outputFileFormat>xml</outputFileFormat>
<sourceDirectories>
<sourceDirectory>src/main/java</sourceDirectory>
<sourceDirectory>src/test/java</sourceDirectory>
</sourceDirectories>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.19.0</version>
<configuration>
<analysisCache>true</analysisCache>
<analysisCacheLocation>${project.build.directory}/pmd/pmd.cache</analysisCacheLocation>
<printFailingErrors>true</printFailingErrors>
<failOnViolation>true</failOnViolation>
<targetJdk>${maven.compiler.target}</targetJdk>
<linkXRef>false</linkXRef>
<rulesets>
<ruleset>rulesets/java/quickstart.xml</ruleset>
</rulesets>
</configuration>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
<execution>
<id>duplicate</id>
<phase>validate</phase>
<goals>
<goal>aggregate-cpd</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>${version.pmd}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>${version.pmd}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>