Skip to content

Commit 29821af

Browse files
author
Philipp Kraus
committed
multi-level project
1 parent 493414d commit 29821af

38 files changed

+107
-62
lines changed

pom.xml

+30-27
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<!--
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+
-->
2323
<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">
2424
<modelVersion>4.0.0</modelVersion>
2525

@@ -182,7 +182,7 @@
182182
<artifactId>spotbugs-maven-plugin</artifactId>
183183
<version>3.1.11</version>
184184
<configuration>
185-
<includeFilterFile>src/codestyle/findbugs/includefiles.xml</includeFilterFile>
185+
<includeFilterFile>${project.basedir}/src/codestyle/spotbugs/includefiles.xml</includeFilterFile>
186186
<effort>Max</effort>
187187
<threshold>Low</threshold>
188188
<maxRank>20</maxRank>
@@ -385,13 +385,14 @@
385385
<artifactId>license-maven-plugin</artifactId>
386386
<version>3.0</version>
387387
<configuration>
388-
<header>src/codestyle/license/licensetemplate.txt</header>
388+
<header>${project.basedir}/src/codestyle/license/licensetemplate.txt</header>
389389
<useDefaultExcludes>true</useDefaultExcludes>
390390
<headerDefinitions>
391-
<headerDefinition>src/codestyle/license/style.xml</headerDefinition>
391+
<headerDefinition>${project.basedir}/src/codestyle/license/style.xml</headerDefinition>
392392
</headerDefinitions>
393393
<excludes>
394394
<exclude>.dockerignore</exclude>
395+
<exclude>CNAME</exclude>
395396
<exclude>**/*.tokens</exclude>
396397
<exclude>**/*.txt</exclude>
397398
<exclude>**/*.yml</exclude>
@@ -440,7 +441,7 @@
440441
<configuration>
441442
<executable>doxygen</executable>
442443
<arguments>
443-
<argument>src/site/configuration.doxyfile</argument>
444+
<argument>${project.basedir}/src/site/configuration.doxyfile</argument>
444445
</arguments>
445446
</configuration>
446447
</execution>
@@ -506,11 +507,13 @@
506507
</execution>
507508
</executions>
508509
<configuration>
509-
<configLocation>src/codestyle/checkstyle/style.xml</configLocation>
510510
<encoding>UTF-8</encoding>
511-
<consoleOutput>true</consoleOutput>
512511
<failsOnError>true</failsOnError>
512+
<consoleOutput>true</consoleOutput>
513513
<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>
514517
</configuration>
515518
</plugin>
516519

src/codestyle

src/main/java/org/lightjason/agentspeak/action/map/CMapClear.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/CMapIsEmpty.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/CMapSize.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/IMapApplyMultiple.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/IMapApplySingle.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/IMapGetMultiple.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/IMapGetSingle.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/map/CCreate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/map/CGetMultiple.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/map/CGetSingle.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/map/CKeys.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/map/CLambdaStreaming.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/map/CPutMultiple.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/map/CPutMultipleIfAbsent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/map/CPutSingle.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/map/CPutSingleIfAbsent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/map/CRemove.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

src/main/java/org/lightjason/agentspeak/action/map/map/CValues.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ######################################################################################
44
* # LGPL License #
55
* # #
6-
* # This file is part of the LightJason AgentSpeak(L++) #
6+
* # This file is part of the LightJason #
77
* # Copyright (c) 2015-19, LightJason (info@lightjason.org) #
88
* # This program is free software: you can redistribute it and/or modify #
99
* # it under the terms of the GNU Lesser General Public License as #

0 commit comments

Comments
 (0)