Skip to content
This repository was archived by the owner on Oct 12, 2021. It is now read-only.

Commit e146c4b

Browse files
committed
Update source file license to a Create Commons license (ANDIPL40)
1 parent 4811770 commit e146c4b

File tree

89 files changed

+530
-257
lines changed

Some content is hidden

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

89 files changed

+530
-257
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ For every pull request you get merged you will get a one month PRO subscription
2828

2929
# License
3030

31-
This plugin is distributed under the Apache License 2.0 license. For more information about the license see the LICENSE file
32-
in the root directory of the repository. A signed CLA is required when contributing to the project.
31+
This plugin is distributed under the Creative Commons Attribution-NoDerivatives 4.0 International Public License. For more
32+
information about the license see the LICENSE file in the root directory of the repository.
33+
34+
A signed CLA is required when contributing to the project.
3335

3436
# Contributing to the project
3537

build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

config/checkstyle/required-header.txt

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
^/\*\s*$
22
^ \* Copyright 2018-2019 Devsoap Inc.$
33
^ \*\s*$
4-
^ \* Licensed under the Apache License, Version 2\.0 \(the "License"\);\s*$
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
7-
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
15-
*/
4+
^ \* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License. *
7+
* You may obtain a copy of the License at
8+
*
9+
* https://creativecommons.org/licenses/by-nd/4.0/
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/

config/codenarc/ruleset-test.groovy

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright 2018-2019 Devsoap Inc.
3+
*
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
8+
* You may obtain a copy of the License at
9+
*
10+
* https://creativecommons.org/licenses/by-nd/4.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+
119
ruleset {
220

321
description '''

config/codenarc/ruleset.groovy

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright 2018-2019 Devsoap Inc.
3+
*
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
8+
* You may obtain a copy of the License at
9+
*
10+
* https://creativecommons.org/licenses/by-nd/4.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+
119
ruleset {
220

321
description '''

gradle/wrapper/gradle-wrapper.properties

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
#
2+
# Copyright 2018-2019 Devsoap Inc.
3+
#
4+
# Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
# International Public License (the "License"); you may not use this file
6+
# except in compliance with the License.
7+
#
8+
# You may obtain a copy of the License at
9+
#
10+
# https://creativecommons.org/licenses/by-nd/4.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+
119
distributionBase=GRADLE_USER_HOME
220
distributionPath=wrapper/dists
321
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-all.zip

src/functionalTest/groovy/com/devsoap/spock/Smoke.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/ClientDependenciesTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/ComponentTests.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/CreateProjectTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/FunctionalTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/GradleVersionSmokeTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/GroovyProjectTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/KotlinProjectTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/LegacyClientDependenciesTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/LegacyClientProductionModeConfigTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/LegacyClientProductionModeTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/MultimoduleFunctionalTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/ThemeTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/VaadinAsSubmoduleTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/VaadinFlowPluginTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

src/functionalTest/groovy/com/devsoap/vaadinflow/VaadinVersionSmokeTest.groovy

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/*
22
* Copyright 2018-2019 Devsoap Inc.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
4+
* Licensed under the Creative Commons Attribution-NoDerivatives 4.0
5+
* International Public License (the "License"); you may not use this file
6+
* except in compliance with the License.
7+
*
68
* You may obtain a copy of the License at
79
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://creativecommons.org/licenses/by-nd/4.0/
911
*
1012
* Unless required by applicable law or agreed to in writing, software
1113
* distributed under the License is distributed on an "AS IS" BASIS,

0 commit comments

Comments
 (0)