|
15 | 15 | </properties> |
16 | 16 |
|
17 | 17 | <dependencies> |
| 18 | + <!-- Spring Core: Основной модуль Spring Framework, предоставляет IoC контейнер и базовые утилиты --> |
18 | 19 | <dependency> |
19 | 20 | <groupId>org.springframework</groupId> |
20 | 21 | <artifactId>spring-core</artifactId> |
21 | 22 | <version>${spring.version}</version> |
22 | 23 | </dependency> |
23 | 24 |
|
| 25 | + <!-- Spring Web: Поддержка веб-приложений, HTTP клиенты и серверы, веб-утилиты --> |
24 | 26 | <dependency> |
25 | 27 | <groupId>org.springframework</groupId> |
26 | 28 | <artifactId>spring-web</artifactId> |
27 | 29 | <version>${spring.version}</version> |
28 | 30 | </dependency> |
29 | 31 |
|
| 32 | + <!-- Jakarta Servlet API: Интерфейсы для работы с HTTP запросами и ответами (предоставляется сервером) --> |
30 | 33 | <dependency> |
31 | 34 | <groupId>jakarta.servlet</groupId> |
32 | 35 | <artifactId>jakarta.servlet-api</artifactId> |
33 | 36 | <version>6.1.0</version> |
34 | 37 | <scope>provided</scope> |
35 | 38 | </dependency> |
36 | 39 |
|
| 40 | + <!-- Jakarta JSP API: Интерфейсы для JavaServer Pages (предоставляется сервером) --> |
37 | 41 | <dependency> |
38 | 42 | <groupId>jakarta.servlet.jsp</groupId> |
39 | 43 | <artifactId>jakarta.servlet.jsp-api</artifactId> |
40 | 44 | <version>4.0.0</version> |
41 | 45 | <scope>provided</scope> |
42 | 46 | </dependency> |
43 | 47 |
|
| 48 | + <!-- Spring WebMVC: Model-View-Controller фреймворк для веб-приложений --> |
44 | 49 | <dependency> |
45 | 50 | <groupId>org.springframework</groupId> |
46 | 51 | <artifactId>spring-webmvc</artifactId> |
47 | 52 | <version>${spring.version}</version> |
48 | 53 | </dependency> |
49 | 54 |
|
| 55 | + <!-- Spring Test: Утилиты для тестирования Spring приложений (MockMvc, TestContext) --> |
50 | 56 | <dependency> |
51 | 57 | <groupId>org.springframework</groupId> |
52 | 58 | <artifactId>spring-test</artifactId> |
53 | 59 | <version>${spring.version}</version> |
54 | 60 | <scope>test</scope> |
55 | 61 | </dependency> |
56 | 62 |
|
57 | | - <!-- Tag Library for JSP --> |
| 63 | + <!-- JSTL API: Стандартная библиотека тегов для JSP (условия, циклы, форматирование) --> |
58 | 64 | <dependency> |
59 | 65 | <groupId>jakarta.servlet.jsp.jstl</groupId> |
60 | 66 | <artifactId>jakarta.servlet.jsp.jstl-api</artifactId> |
61 | 67 | <version>3.0.2</version> |
62 | 68 | </dependency> |
| 69 | + <!-- JSTL Implementation: Реализация JSTL от GlassFish --> |
63 | 70 | <dependency> |
64 | 71 | <groupId>org.glassfish.web</groupId> |
65 | 72 | <artifactId>jakarta.servlet.jsp.jstl</artifactId> |
66 | 73 | <version>3.0.1</version> |
67 | 74 | </dependency> |
68 | 75 |
|
69 | 76 |
|
70 | | - <!-- Hibenate --> |
| 77 | + <!-- Hibernate ORM: Object-Relational Mapping фреймворк для работы с базами данных --> |
71 | 78 | <dependency> |
72 | 79 | <groupId>org.hibernate.orm</groupId> |
73 | 80 | <artifactId>hibernate-core</artifactId> |
74 | 81 | <version>6.6.29.Final</version> |
75 | 82 | </dependency> |
76 | 83 |
|
77 | | - <!-- SQLite --> |
| 84 | + <!-- SQLite JDBC: Драйвер для работы со встроенной базой данных SQLite --> |
78 | 85 | <dependency> |
79 | 86 | <groupId>org.xerial</groupId> |
80 | 87 | <artifactId>sqlite-jdbc</artifactId> |
81 | 88 | <version>3.50.3.0</version> |
82 | 89 | </dependency> |
83 | 90 |
|
84 | | - <!-- JUnit 5 для тестирования нашего приложения --> |
| 91 | + <!-- JUnit Jupiter API: Основной API JUnit 5 для написания тестов --> |
85 | 92 | <dependency> |
86 | 93 | <groupId>org.junit.jupiter</groupId> |
87 | 94 | <artifactId>junit-jupiter-api</artifactId> |
88 | 95 | <version>5.11.4</version> |
89 | 96 | <scope>test</scope> |
90 | 97 | </dependency> |
| 98 | + <!-- JUnit Jupiter Engine: Движок для запуска JUnit 5 тестов --> |
91 | 99 | <dependency> |
92 | 100 | <groupId>org.junit.jupiter</groupId> |
93 | 101 | <artifactId>junit-jupiter-engine</artifactId> |
94 | 102 | <version>5.11.4</version> |
95 | 103 | <scope>test</scope> |
96 | 104 | </dependency> |
| 105 | + <!-- JUnit Jupiter Params: Поддержка параметризованных тестов --> |
97 | 106 | <dependency> |
98 | 107 | <groupId>org.junit.jupiter</groupId> |
99 | 108 | <artifactId>junit-jupiter-params</artifactId> |
100 | 109 | <version>5.11.4</version> |
101 | 110 | <scope>test</scope> |
102 | 111 | </dependency> |
| 112 | + <!-- JUnit Vintage Engine: Совместимость с JUnit 3 и JUnit 4 тестами --> |
103 | 113 | <dependency> |
104 | 114 | <groupId>org.junit.vintage</groupId> |
105 | 115 | <artifactId>junit-vintage-engine</artifactId> |
106 | 116 | <version>5.11.4</version> |
107 | 117 | <scope>test</scope> |
108 | 118 | </dependency> |
109 | 119 |
|
| 120 | + <!-- PostgreSQL JDBC Driver: Драйвер для подключения к PostgreSQL --> |
110 | 121 | <dependency> |
111 | 122 | <groupId>org.postgresql</groupId> |
112 | 123 | <artifactId>postgresql</artifactId> |
113 | 124 | <version>42.7.8</version> |
114 | 125 | </dependency> |
115 | 126 |
|
116 | | - <!-- HikariCP - пул соединений --> |
| 127 | + <!-- HikariCP: Высокопроизводительный пул соединений для JDBC --> |
117 | 128 | <dependency> |
118 | 129 | <groupId>com.zaxxer</groupId> |
119 | 130 | <artifactId>HikariCP</artifactId> |
120 | 131 | <version>7.0.2</version> |
121 | 132 | </dependency> |
122 | 133 |
|
123 | | - <!-- H2 Database для тестов --> |
| 134 | + <!-- H2 Database: Встроенная база данных для тестирования, работает в памяти --> |
124 | 135 | <dependency> |
125 | 136 | <groupId>com.h2database</groupId> |
126 | 137 | <artifactId>h2</artifactId> |
127 | 138 | <version>2.3.232</version> |
128 | 139 | <scope>test</scope> |
129 | 140 | </dependency> |
130 | 141 |
|
131 | | - <!-- Cucumber BDD Testing --> |
| 142 | + <!-- Cucumber Java: BDD фреймворк для написания тестов на естественном языке (Gherkin) --> |
132 | 143 | <dependency> |
133 | 144 | <groupId>io.cucumber</groupId> |
134 | 145 | <artifactId>cucumber-java</artifactId> |
135 | 146 | <version>7.23.0</version> |
136 | 147 | <scope>test</scope> |
137 | 148 | </dependency> |
| 149 | + <!-- Cucumber JUnit Platform Engine: Интеграция Cucumber с JUnit Platform --> |
138 | 150 | <dependency> |
139 | 151 | <groupId>io.cucumber</groupId> |
140 | 152 | <artifactId>cucumber-junit-platform-engine</artifactId> |
141 | 153 | <version>7.23.0</version> |
142 | 154 | <scope>test</scope> |
143 | 155 | </dependency> |
| 156 | + <!-- Cucumber JUnit: Поддержка запуска Cucumber тестов через JUnit --> |
144 | 157 | <dependency> |
145 | 158 | <groupId>io.cucumber</groupId> |
146 | 159 | <artifactId>cucumber-junit</artifactId> |
147 | 160 | <version>7.23.0</version> |
148 | 161 | <scope>test</scope> |
149 | 162 | </dependency> |
150 | 163 |
|
| 164 | + <!-- JUnit Platform Suite: API для создания наборов тестов --> |
151 | 165 | <dependency> |
152 | 166 | <groupId>org.junit.platform</groupId> |
153 | 167 | <artifactId>junit-platform-suite</artifactId> |
|
0 commit comments