Skip to content

Commit 932836f

Browse files
iluwatarohbus
andauthored
Update license plugin (iluwatar#2020)
* update license plugin * suppress linelength and emptylineseparator rules * fix checkstyle error Co-authored-by: Subhrodip Mohanta <[email protected]>
1 parent 5edcb23 commit 932836f

File tree

1,730 files changed

+6017
-4156
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,730 files changed

+6017
-4156
lines changed

abstract-document/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4+
This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
5+
46
The MIT License
5-
Copyright © 2014-2021 Ilkka Seppälä
7+
Copyright © 2014-2022 Ilkka Seppälä
68
79
Permission is hereby granted, free of charge, to any person obtaining a copy
810
of this software and associated documentation files (the "Software"), to deal

abstract-document/src/main/java/com/iluwatar/abstractdocument/AbstractDocument.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument;
2526

2627
import java.util.Collection;

abstract-document/src/main/java/com/iluwatar/abstractdocument/App.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument;
2526

2627
import com.iluwatar.abstractdocument.domain.Car;

abstract-document/src/main/java/com/iluwatar/abstractdocument/Document.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument;
2526

2627
import java.util.Map;

abstract-document/src/main/java/com/iluwatar/abstractdocument/domain/Car.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument.domain;
2526

2627
import com.iluwatar.abstractdocument.AbstractDocument;

abstract-document/src/main/java/com/iluwatar/abstractdocument/domain/HasModel.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument.domain;
2526

2627
import com.iluwatar.abstractdocument.Document;

abstract-document/src/main/java/com/iluwatar/abstractdocument/domain/HasParts.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument.domain;
2526

2627
import com.iluwatar.abstractdocument.Document;

abstract-document/src/main/java/com/iluwatar/abstractdocument/domain/HasPrice.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument.domain;
2526

2627
import com.iluwatar.abstractdocument.Document;

abstract-document/src/main/java/com/iluwatar/abstractdocument/domain/HasType.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument.domain;
2526

2627
import com.iluwatar.abstractdocument.Document;

abstract-document/src/main/java/com/iluwatar/abstractdocument/domain/Part.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument.domain;
2526

2627
import com.iluwatar.abstractdocument.AbstractDocument;

abstract-document/src/main/java/com/iluwatar/abstractdocument/domain/enums/Property.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument.domain.enums;
2526

2627
/**

abstract-document/src/test/java/com/iluwatar/abstractdocument/AbstractDocumentTest.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument;
2526

2627
import org.junit.jupiter.api.Test;

abstract-document/src/test/java/com/iluwatar/abstractdocument/AppTest.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument;
2526

2627
import org.junit.jupiter.api.Test;

abstract-document/src/test/java/com/iluwatar/abstractdocument/DomainTest.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractdocument;
2526

2627
import com.iluwatar.abstractdocument.domain.Car;

abstract-factory/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4+
This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
5+
46
The MIT License
5-
Copyright © 2014-2021 Ilkka Seppälä
7+
Copyright © 2014-2022 Ilkka Seppälä
68
79
Permission is hereby granted, free of charge, to any person obtaining a copy
810
of this software and associated documentation files (the "Software"), to deal

abstract-factory/src/main/java/com/iluwatar/abstractfactory/App.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractfactory;
2526

2627
import lombok.extern.slf4j.Slf4j;

abstract-factory/src/main/java/com/iluwatar/abstractfactory/Army.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractfactory;
2526

2627
/**

abstract-factory/src/main/java/com/iluwatar/abstractfactory/Castle.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractfactory;
2526

2627
/**

abstract-factory/src/main/java/com/iluwatar/abstractfactory/ElfArmy.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractfactory;
2526

2627
/**

abstract-factory/src/main/java/com/iluwatar/abstractfactory/ElfCastle.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractfactory;
2526

2627
/**

abstract-factory/src/main/java/com/iluwatar/abstractfactory/ElfKing.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractfactory;
2526

2627
/**

abstract-factory/src/main/java/com/iluwatar/abstractfactory/ElfKingdomFactory.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
24
* The MIT License
3-
* Copyright © 2014-2021 Ilkka Seppälä
5+
* Copyright © 2014-2022 Ilkka Seppälä
46
*
57
* Permission is hereby granted, free of charge, to any person obtaining a copy
68
* of this software and associated documentation files (the "Software"), to deal
@@ -20,7 +22,6 @@
2022
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2123
* THE SOFTWARE.
2224
*/
23-
2425
package com.iluwatar.abstractfactory;
2526

2627
/**

0 commit comments

Comments
 (0)