|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
2 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
6 | 6 | <parent> |
|
145 | 145 | </relocations> |
146 | 146 | <transformers> |
147 | 147 | <transformer |
148 | | - implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 148 | + implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
149 | 149 | <manifestEntries> |
150 | 150 | <Automatic-Module-Name>com.clickhouse.client.http</Automatic-Module-Name> |
151 | 151 | </manifestEntries> |
|
179 | 179 | </plugins> |
180 | 180 | </build> |
181 | 181 |
|
| 182 | + |
182 | 183 | <profiles> |
183 | 184 | <profile> |
184 | 185 | <id>performance-testing</id> |
|
202 | 203 | <artifactId>maven-compiler-plugin</artifactId> |
203 | 204 | <configuration> |
204 | 205 | <annotationProcessorPaths> |
205 | | - <path> |
206 | | - <groupId>org.projectlombok</groupId> |
207 | | - <artifactId>lombok</artifactId> |
208 | | - <version>1.18.32</version> |
209 | | - </path> |
210 | 206 | <path> |
211 | 207 | <groupId>org.openjdk.jmh</groupId> |
212 | 208 | <artifactId>jmh-generator-annprocess</artifactId> |
|
236 | 232 | </execution> |
237 | 233 | </executions> |
238 | 234 | </plugin> |
239 | | - <plugin> |
240 | | - <groupId>org.codehaus.mojo</groupId> |
241 | | - <artifactId>build-helper-maven-plugin</artifactId> |
242 | | - <version>3.6.0</version> |
243 | | - <executions> |
244 | | - <execution> |
245 | | - <id>add-test-source</id> |
246 | | - <phase>generate-test-sources</phase> |
247 | | - <goals> |
248 | | - <goal>add-test-source</goal> |
249 | | - </goals> |
250 | | - <configuration> |
251 | | - <sources> |
252 | | - <source>src/test/perf</source> |
253 | | - </sources> |
254 | | - </configuration> |
255 | | - </execution> |
256 | | - </executions> |
257 | | - </plugin> |
258 | 235 | <plugin> |
259 | 236 | <groupId>org.codehaus.mojo</groupId> |
260 | 237 | <artifactId>exec-maven-plugin</artifactId> |
|
278 | 255 | </execution> |
279 | 256 | </executions> |
280 | 257 | </plugin> |
| 258 | + <plugin> |
| 259 | + <groupId>org.codehaus.mojo</groupId> |
| 260 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 261 | + <version>3.6.0</version> |
| 262 | + <executions> |
| 263 | + <execution> |
| 264 | + <id>add-test-source</id> |
| 265 | + <phase>generate-test-sources</phase> |
| 266 | + <goals> |
| 267 | + <goal>add-test-source</goal> |
| 268 | + </goals> |
| 269 | + <configuration> |
| 270 | + <sources> |
| 271 | + <source>src/test/perf</source> |
| 272 | + </sources> |
| 273 | + </configuration> |
| 274 | + </execution> |
| 275 | + </executions> |
| 276 | + </plugin> |
281 | 277 | </plugins> |
282 | 278 | </build> |
283 | 279 | </profile> |
|
0 commit comments