Skip to content

Commit 8e6080c

Browse files
committed
Update copyright license headers
1 parent dad2c2d commit 8e6080c

File tree

720 files changed

+1052
-748
lines changed

Some content is hidden

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

720 files changed

+1052
-748
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ update-protocol: upgrade-protocol compile-cdt-java-client
5757

5858
update-copyright-license-header:
5959
$(MVN) clean license:update-file-header
60+
# Apply the formatting on the codebase
61+
$(MVN) com.coveo:fmt-maven-plugin:format
6062

6163
sonar-analysis:
6264
# Running sonar analysis

cdt-examples/pom.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,6 @@
6969
<plugin>
7070
<groupId>com.coveo</groupId>
7171
<artifactId>fmt-maven-plugin</artifactId>
72-
<version>2.1.0</version>
73-
<executions>
74-
<execution>
75-
<goals>
76-
<goal>format</goal>
77-
</goals>
78-
<phase>process-sources</phase>
79-
</execution>
80-
</executions>
8172
</plugin>
8273
</plugins>
8374
</build>

cdt-examples/src/main/java/com/github/kklisura/cdt/examples/BlockUrlGivenPatternExample.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
package com.github.kklisura.cdt.examples;
22

3+
/*-
4+
* #%L
5+
* cdt-examples
6+
* %%
7+
* Copyright (C) 2018 - 2020 Kenan Klisura
8+
* %%
9+
* Licensed under the Apache License, Version 2.0 (the "License");
10+
* you may not use this file except in compliance with the License.
11+
* You may obtain a copy of the License at
12+
*
13+
* http://www.apache.org/licenses/LICENSE-2.0
14+
*
15+
* Unless required by applicable law or agreed to in writing, software
16+
* distributed under the License is distributed on an "AS IS" BASIS,
17+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
* See the License for the specific language governing permissions and
19+
* limitations under the License.
20+
* #L%
21+
*/
22+
323
import com.github.kklisura.cdt.launch.ChromeLauncher;
424
import com.github.kklisura.cdt.protocol.commands.Network;
525
import com.github.kklisura.cdt.protocol.commands.Page;

cdt-examples/src/main/java/com/github/kklisura/cdt/examples/BlockUrlsExample.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
package com.github.kklisura.cdt.examples;
22

3+
/*-
4+
* #%L
5+
* cdt-examples
6+
* %%
7+
* Copyright (C) 2018 - 2020 Kenan Klisura
8+
* %%
9+
* Licensed under the Apache License, Version 2.0 (the "License");
10+
* you may not use this file except in compliance with the License.
11+
* You may obtain a copy of the License at
12+
*
13+
* http://www.apache.org/licenses/LICENSE-2.0
14+
*
15+
* Unless required by applicable law or agreed to in writing, software
16+
* distributed under the License is distributed on an "AS IS" BASIS,
17+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
* See the License for the specific language governing permissions and
19+
* limitations under the License.
20+
* #L%
21+
*/
22+
323
import com.github.kklisura.cdt.launch.ChromeLauncher;
424
import com.github.kklisura.cdt.protocol.commands.Network;
525
import com.github.kklisura.cdt.protocol.commands.Page;

cdt-examples/src/main/java/com/github/kklisura/cdt/examples/CssCoverageExample.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
package com.github.kklisura.cdt.examples;
22

3+
/*-
4+
* #%L
5+
* cdt-examples
6+
* %%
7+
* Copyright (C) 2018 - 2020 Kenan Klisura
8+
* %%
9+
* Licensed under the Apache License, Version 2.0 (the "License");
10+
* you may not use this file except in compliance with the License.
11+
* You may obtain a copy of the License at
12+
*
13+
* http://www.apache.org/licenses/LICENSE-2.0
14+
*
15+
* Unless required by applicable law or agreed to in writing, software
16+
* distributed under the License is distributed on an "AS IS" BASIS,
17+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
* See the License for the specific language governing permissions and
19+
* limitations under the License.
20+
* #L%
21+
*/
22+
323
import com.github.kklisura.cdt.launch.ChromeLauncher;
424
import com.github.kklisura.cdt.protocol.commands.CSS;
525
import com.github.kklisura.cdt.protocol.commands.DOM;

cdt-examples/src/main/java/com/github/kklisura/cdt/examples/DumpHtmlFromPageExample.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
package com.github.kklisura.cdt.examples;
22

3+
/*-
4+
* #%L
5+
* cdt-examples
6+
* %%
7+
* Copyright (C) 2018 - 2020 Kenan Klisura
8+
* %%
9+
* Licensed under the Apache License, Version 2.0 (the "License");
10+
* you may not use this file except in compliance with the License.
11+
* You may obtain a copy of the License at
12+
*
13+
* http://www.apache.org/licenses/LICENSE-2.0
14+
*
15+
* Unless required by applicable law or agreed to in writing, software
16+
* distributed under the License is distributed on an "AS IS" BASIS,
17+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
* See the License for the specific language governing permissions and
19+
* limitations under the License.
20+
* #L%
21+
*/
22+
323
import com.github.kklisura.cdt.launch.ChromeLauncher;
424
import com.github.kklisura.cdt.protocol.commands.Page;
525
import com.github.kklisura.cdt.protocol.commands.Runtime;

cdt-examples/src/main/java/com/github/kklisura/cdt/examples/FullPageScreenshotExample.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
package com.github.kklisura.cdt.examples;
22

3+
/*-
4+
* #%L
5+
* cdt-examples
6+
* %%
7+
* Copyright (C) 2018 - 2020 Kenan Klisura
8+
* %%
9+
* Licensed under the Apache License, Version 2.0 (the "License");
10+
* you may not use this file except in compliance with the License.
11+
* You may obtain a copy of the License at
12+
*
13+
* http://www.apache.org/licenses/LICENSE-2.0
14+
*
15+
* Unless required by applicable law or agreed to in writing, software
16+
* distributed under the License is distributed on an "AS IS" BASIS,
17+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
* See the License for the specific language governing permissions and
19+
* limitations under the License.
20+
* #L%
21+
*/
22+
323
import com.github.kklisura.cdt.launch.ChromeLauncher;
424
import com.github.kklisura.cdt.protocol.commands.Emulation;
525
import com.github.kklisura.cdt.protocol.commands.Page;

cdt-examples/src/main/java/com/github/kklisura/cdt/examples/HighlightElementExample.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
package com.github.kklisura.cdt.examples;
22

3+
/*-
4+
* #%L
5+
* cdt-examples
6+
* %%
7+
* Copyright (C) 2018 - 2020 Kenan Klisura
8+
* %%
9+
* Licensed under the Apache License, Version 2.0 (the "License");
10+
* you may not use this file except in compliance with the License.
11+
* You may obtain a copy of the License at
12+
*
13+
* http://www.apache.org/licenses/LICENSE-2.0
14+
*
15+
* Unless required by applicable law or agreed to in writing, software
16+
* distributed under the License is distributed on an "AS IS" BASIS,
17+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
* See the License for the specific language governing permissions and
19+
* limitations under the License.
20+
* #L%
21+
*/
22+
323
import com.github.kklisura.cdt.launch.ChromeLauncher;
424
import com.github.kklisura.cdt.protocol.commands.*;
525
import com.github.kklisura.cdt.protocol.types.dom.RGBA;

cdt-examples/src/main/java/com/github/kklisura/cdt/examples/IncreasedIncomingBufferInTyrusExample.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
package com.github.kklisura.cdt.examples;
22

3+
/*-
4+
* #%L
5+
* cdt-examples
6+
* %%
7+
* Copyright (C) 2018 - 2020 Kenan Klisura
8+
* %%
9+
* Licensed under the Apache License, Version 2.0 (the "License");
10+
* you may not use this file except in compliance with the License.
11+
* You may obtain a copy of the License at
12+
*
13+
* http://www.apache.org/licenses/LICENSE-2.0
14+
*
15+
* Unless required by applicable law or agreed to in writing, software
16+
* distributed under the License is distributed on an "AS IS" BASIS,
17+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
* See the License for the specific language governing permissions and
19+
* limitations under the License.
20+
* #L%
21+
*/
22+
323
import com.github.kklisura.cdt.launch.ChromeLauncher;
424
import com.github.kklisura.cdt.protocol.commands.Page;
525
import com.github.kklisura.cdt.protocol.types.page.PrintToPDF;

cdt-examples/src/main/java/com/github/kklisura/cdt/examples/InterceptAndBlockUrlsExample.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
package com.github.kklisura.cdt.examples;
22

3+
/*-
4+
* #%L
5+
* cdt-examples
6+
* %%
7+
* Copyright (C) 2018 - 2020 Kenan Klisura
8+
* %%
9+
* Licensed under the Apache License, Version 2.0 (the "License");
10+
* you may not use this file except in compliance with the License.
11+
* You may obtain a copy of the License at
12+
*
13+
* http://www.apache.org/licenses/LICENSE-2.0
14+
*
15+
* Unless required by applicable law or agreed to in writing, software
16+
* distributed under the License is distributed on an "AS IS" BASIS,
17+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
* See the License for the specific language governing permissions and
19+
* limitations under the License.
20+
* #L%
21+
*/
22+
323
import com.github.kklisura.cdt.launch.ChromeLauncher;
424
import com.github.kklisura.cdt.protocol.commands.Network;
525
import com.github.kklisura.cdt.protocol.commands.Page;

0 commit comments

Comments
 (0)