|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + Copyright © 2025 Evolved Binary Ltd. (tech@evolvedbinary.com) |
| 5 | +
|
| 6 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | + you may not use this file except in compliance with the License. |
| 8 | + You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | + Unless required by applicable law or agreed to in writing, software |
| 13 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + See the License for the specific language governing permissions and |
| 16 | + limitations under the License. |
| 17 | +
|
| 18 | +--> |
2 | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | 20 | 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"> |
4 | 21 | <modelVersion>4.0.0</modelVersion> |
|
12 | 29 | <url>https://www.evolvedbinary.com</url> |
13 | 30 | </organization> |
14 | 31 |
|
| 32 | + <inceptionYear>2025</inceptionYear> |
| 33 | + |
15 | 34 | <properties> |
16 | 35 | <project.build.source>21</project.build.source> |
17 | 36 | <project.build.target>21</project.build.target> |
|
361 | 380 | </executions> |
362 | 381 | </plugin> |
363 | 382 |
|
| 383 | + <plugin> |
| 384 | + <groupId>com.mycila</groupId> |
| 385 | + <artifactId>license-maven-plugin</artifactId> |
| 386 | + <version>5.0.0</version> |
| 387 | + <configuration> |
| 388 | + <licenseSets> |
| 389 | + <licenseSet> |
| 390 | + <header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header> |
| 391 | + <properties> |
| 392 | + <year>${project.inceptionYear}</year> |
| 393 | + <owner>Evolved Binary Ltd.</owner> |
| 394 | + <email>tech@evolvedbinary.com</email> |
| 395 | + </properties> |
| 396 | + <excludes> |
| 397 | + <exclude>src/main/resources/schemas/**</exclude> |
| 398 | + <exclude>src/main/resources/static/**</exclude> |
| 399 | + <exclude>src/test/resources/mock-data/**</exclude> |
| 400 | + </excludes> |
| 401 | + </licenseSet> |
| 402 | + </licenseSets> |
| 403 | + </configuration> |
| 404 | + <executions> |
| 405 | + <execution> |
| 406 | + <id>check-headers</id> |
| 407 | + <phase>verify</phase> |
| 408 | + <goals> |
| 409 | + <goal>check</goal> |
| 410 | + </goals> |
| 411 | + </execution> |
| 412 | + </executions> |
| 413 | + </plugin> |
| 414 | + |
364 | 415 | <!-- Maven Compiler Plugin --> |
365 | 416 | <plugin> |
366 | 417 | <groupId>org.apache.maven.plugins</groupId> |
|
0 commit comments