|
1 | 1 | <!--
|
2 |
| - |
3 |
| - ###################################################################################### |
4 |
| - # LGPL License # |
5 |
| - # # |
6 |
| - # This file is part of the LightJason AgentSpeak(L++) # |
7 |
| - # Copyright (c) 2015-19, LightJason (info@lightjason.org) # |
8 |
| - # This program is free software: you can redistribute it and/or modify # |
9 |
| - # it under the terms of the GNU Lesser General Public License as # |
10 |
| - # published by the Free Software Foundation, either version 3 of the # |
11 |
| - # License, or (at your option) any later version. # |
12 |
| - # # |
13 |
| - # This program is distributed in the hope that it will be useful, # |
14 |
| - # but WITHOUT ANY WARRANTY; without even the implied warranty of # |
15 |
| - # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # |
16 |
| - # GNU Lesser General Public License for more details. # |
17 |
| - # # |
18 |
| - # You should have received a copy of the GNU Lesser General Public License # |
19 |
| - # along with this program. If not, see http://www.gnu.org/licenses/ # |
20 |
| - ###################################################################################### |
21 |
| - |
22 |
| - --> |
| 2 | +
|
| 3 | + ###################################################################################### |
| 4 | + # LGPL License # |
| 5 | + # # |
| 6 | + # This file is part of the LightJason # |
| 7 | + # Copyright (c) 2015-19, LightJason (info@lightjason.org) # |
| 8 | + # This program is free software: you can redistribute it and/or modify # |
| 9 | + # it under the terms of the GNU Lesser General Public License as # |
| 10 | + # published by the Free Software Foundation, either version 3 of the # |
| 11 | + # License, or (at your option) any later version. # |
| 12 | + # # |
| 13 | + # This program is distributed in the hope that it will be useful, # |
| 14 | + # but WITHOUT ANY WARRANTY; without even the implied warranty of # |
| 15 | + # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # |
| 16 | + # GNU Lesser General Public License for more details. # |
| 17 | + # # |
| 18 | + # You should have received a copy of the GNU Lesser General Public License # |
| 19 | + # along with this program. If not, see http://www.gnu.org/licenses/ # |
| 20 | + ###################################################################################### |
| 21 | +
|
| 22 | +--> |
23 | 23 | <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/maven-v4_0_0.xsd">
|
24 | 24 | <modelVersion>4.0.0</modelVersion>
|
25 | 25 |
|
|
182 | 182 | <artifactId>spotbugs-maven-plugin</artifactId>
|
183 | 183 | <version>3.1.11</version>
|
184 | 184 | <configuration>
|
185 |
| - <includeFilterFile>src/codestyle/findbugs/includefiles.xml</includeFilterFile> |
| 185 | + <includeFilterFile>${project.basedir}/src/codestyle/spotbugs/includefiles.xml</includeFilterFile> |
186 | 186 | <effort>Max</effort>
|
187 | 187 | <threshold>Low</threshold>
|
188 | 188 | <maxRank>20</maxRank>
|
|
385 | 385 | <artifactId>license-maven-plugin</artifactId>
|
386 | 386 | <version>3.0</version>
|
387 | 387 | <configuration>
|
388 |
| - <header>src/codestyle/license/licensetemplate.txt</header> |
| 388 | + <header>${project.basedir}/src/codestyle/license/licensetemplate.txt</header> |
389 | 389 | <useDefaultExcludes>true</useDefaultExcludes>
|
390 | 390 | <headerDefinitions>
|
391 |
| - <headerDefinition>src/codestyle/license/style.xml</headerDefinition> |
| 391 | + <headerDefinition>${project.basedir}/src/codestyle/license/style.xml</headerDefinition> |
392 | 392 | </headerDefinitions>
|
393 | 393 | <excludes>
|
394 | 394 | <exclude>.dockerignore</exclude>
|
| 395 | + <exclude>CNAME</exclude> |
395 | 396 | <exclude>**/*.tokens</exclude>
|
396 | 397 | <exclude>**/*.txt</exclude>
|
397 | 398 | <exclude>**/*.yml</exclude>
|
|
440 | 441 | <configuration>
|
441 | 442 | <executable>doxygen</executable>
|
442 | 443 | <arguments>
|
443 |
| - <argument>src/site/configuration.doxyfile</argument> |
| 444 | + <argument>${project.basedir}/src/site/configuration.doxyfile</argument> |
444 | 445 | </arguments>
|
445 | 446 | </configuration>
|
446 | 447 | </execution>
|
|
506 | 507 | </execution>
|
507 | 508 | </executions>
|
508 | 509 | <configuration>
|
509 |
| - <configLocation>src/codestyle/checkstyle/style.xml</configLocation> |
510 | 510 | <encoding>UTF-8</encoding>
|
511 |
| - <consoleOutput>true</consoleOutput> |
512 | 511 | <failsOnError>true</failsOnError>
|
| 512 | + <consoleOutput>true</consoleOutput> |
513 | 513 | <includeTestSourceDirectory>true</includeTestSourceDirectory>
|
| 514 | + <headerLocation>${project.basedir}/src/codestyle/license/license.txt</headerLocation> |
| 515 | + <configLocation>${project.basedir}/src/codestyle/checkstyle/style.xml</configLocation> |
| 516 | + <suppressionsLocation>${project.basedir}/src/codestyle/checkstyle/suppressions.xml</suppressionsLocation> |
514 | 517 | </configuration>
|
515 | 518 | </plugin>
|
516 | 519 |
|
|
0 commit comments