diff --git a/LICENSE b/LICENSE
index 261eeb9..b447376 100644
--- a/LICENSE
+++ b/LICENSE
@@ -192,7 +192,7 @@
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
+ https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/README.md b/README.md
index 813456b..291c232 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ We will try to stay in sync with CSSParser regarding the features in the future.
[HtmlUnit@mastodon](https://fosstodon.org/@HtmlUnit) | [HtmlUnit@bsky](https://bsky.app/profile/htmlunit.bsky.social) | [HtmlUnit@Twitter](https://twitter.com/HtmlUnit)
-### Latest release Version 4.13.0 / June 03, 2025
+### Latest release Version 4.14.0 / July 30, 2025
## Get it!
@@ -30,7 +30,7 @@ Add to your `pom.xml`:
org.htmlunit
htmlunit-cssparser
- 4.13.0
+ 4.14.0
```
@@ -39,7 +39,7 @@ Add to your `pom.xml`:
Add to your `build.gradle`:
```groovy
-implementation group: 'org.htmlunit', name: 'htmlunit-cssparser', version: '4.13.0'
+implementation group: 'org.htmlunit', name: 'htmlunit-cssparser', version: '4.14.0'
```
@@ -55,22 +55,24 @@ If you use maven please add:
org.htmlunit
htmlunit-cssparser
- 4.14.0-SNAPSHOT
+ 4.15.0-SNAPSHOT
-You have to add the sonatype snapshot repository to your pom `repositories` section also:
+You have to add the sonatype-central snapshot repository to your pom `repositories` section also:
-
- OSS Sonatype snapshots
- https://s01.oss.sonatype.org/content/repositories/snapshots/
-
- true
- always
-
-
- false
-
-
+
+
+ Central Portal Snapshots
+ central-portal-snapshots
+ https://central.sonatype.com/repository/maven-snapshots/
+
+ false
+
+
+ true
+
+
+
## Start HtmlUnit - CSSParser Development
@@ -126,9 +128,8 @@ This part is intended for committer who are packaging a release.
mvn -up clean deploy
```
-* Go to [Sonatype staging repositories](https://s01.oss.sonatype.org/index.html#stagingRepositories) and process the deploy
- - select the repository and close it - wait until the close is processed
- - release the package and wait until it is processed
+* Go to [Maven Central Portal](https://central.sonatype.com/) and process the deploy
+ - publish the package and wait until it is processed
* Create the version on Github
* login to Github and open project https://github.com/HtmlUnit/htmlunit-cssparser
diff --git a/checkstyle.xml b/checkstyle.xml
index 0f2683b..a85e3b7 100644
--- a/checkstyle.xml
+++ b/checkstyle.xml
@@ -24,7 +24,7 @@
-
+
diff --git a/pom.xml b/pom.xml
index d096d4e..d9af415 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
org.htmlunit
htmlunit-cssparser
- 4.13.0
+ 4.14.0
HtmlUnit CSS Parser
HtmlUnit
@@ -20,8 +20,20 @@
8
8
- 10.25.0
+
+ 5.13.4
+ 2.20.0
+
+
+ 10.26.1
10.0.4
+
+
+ 0.8.0
+ 3.6.0
+ 3.2.8
+ 3.6.1
+ 3.4.2
@@ -29,7 +41,7 @@
org.apache.maven.plugins
maven-enforcer-plugin
- 3.5.0
+ ${enforcer-plugin.version}
enforce-maven
@@ -49,6 +61,15 @@
+
+ org.sonatype.central
+ central-publishing-maven-plugin
+ ${central-publishing-plugin.version}
+ true
+
+ central
+
+
org.owasp
dependency-check-maven
@@ -149,7 +170,7 @@
org.apache.maven.plugins
maven-checkstyle-plugin
- 3.6.0
+ ${checkstyle-plugin.version}
checkstyle.xml
checkstyle_suppressions.xml
@@ -168,7 +189,7 @@
org.apache.maven.plugins
maven-jar-plugin
- 3.4.2
+ ${jar-plugin.version}
@@ -214,7 +235,7 @@
org.apache.maven.plugins
maven-gpg-plugin
- 3.2.7
+ ${gpg-plugin.version}
verify
@@ -269,7 +290,7 @@
Apache License, Version 2.0
- http://www.apache.org/licenses/LICENSE-2.0.txt
+ https://www.apache.org/licenses/LICENSE-2.0.txt
repo
@@ -322,37 +343,15 @@
org.junit.jupiter
junit-jupiter-engine
- 5.13.0
+ ${junit.version}
test
commons-io
commons-io
- 2.19.0
+ ${commons-io.version}
test
-
-
- s01-sonatype-nexus-snapshots
- https://s01.oss.sonatype.org/content/repositories/snapshots
-
-
- s01-sonatype-nexus-staging
- https://s01.oss.sonatype.org/service/local/staging/deploy/maven2
-
-
-
-
-
- true
- always
-
-
- false
-
- OSS Sonatype snapshots
- https://s01.oss.sonatype.org/content/repositories/snapshots/
-
-
+
diff --git a/src/main/java/org/htmlunit/cssparser/dom/AbstractCSSRuleImpl.java b/src/main/java/org/htmlunit/cssparser/dom/AbstractCSSRuleImpl.java
index 7713eaf..4435439 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/AbstractCSSRuleImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/AbstractCSSRuleImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/AbstractColor.java b/src/main/java/org/htmlunit/cssparser/dom/AbstractColor.java
index 78a4f39..082da53 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/AbstractColor.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/AbstractColor.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSCharsetRuleImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSCharsetRuleImpl.java
index e1e6810..8954cf1 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSCharsetRuleImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSCharsetRuleImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSFontFaceRuleImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSFontFaceRuleImpl.java
index 30faf49..f326793 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSFontFaceRuleImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSFontFaceRuleImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSImportRuleImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSImportRuleImpl.java
index 1460fc0..bc8b04b 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSImportRuleImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSImportRuleImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSMediaRuleImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSMediaRuleImpl.java
index 3e959e9..0a1ef2b 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSMediaRuleImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSMediaRuleImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSPageRuleImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSPageRuleImpl.java
index 675ac77..0c0d0a4 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSPageRuleImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSPageRuleImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSRuleListImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSRuleListImpl.java
index 86f452c..4dec9ff 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSRuleListImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSRuleListImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSStyleDeclarationImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSStyleDeclarationImpl.java
index ee63eea..e253d3f 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSStyleDeclarationImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSStyleDeclarationImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSStyleRuleImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSStyleRuleImpl.java
index 9606fa5..8feaea0 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSStyleRuleImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSStyleRuleImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSStyleSheetImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSStyleSheetImpl.java
index ff58966..310dbe8 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSStyleSheetImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSStyleSheetImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSStyleSheetListImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSStyleSheetListImpl.java
index 35067ea..b38fb14 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSStyleSheetListImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSStyleSheetListImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSUnknownRuleImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSUnknownRuleImpl.java
index 971f8f6..5b72017 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSUnknownRuleImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSUnknownRuleImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CSSValueImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CSSValueImpl.java
index 2214722..f53ea22 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CSSValueImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CSSValueImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/CounterImpl.java b/src/main/java/org/htmlunit/cssparser/dom/CounterImpl.java
index 016c8b5..4a31054 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/CounterImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/CounterImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/DOMExceptionImpl.java b/src/main/java/org/htmlunit/cssparser/dom/DOMExceptionImpl.java
index 5d4d625..4f3395d 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/DOMExceptionImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/DOMExceptionImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/HSLColorImpl.java b/src/main/java/org/htmlunit/cssparser/dom/HSLColorImpl.java
index eaf6bbf..304611f 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/HSLColorImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/HSLColorImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/HWBColorImpl.java b/src/main/java/org/htmlunit/cssparser/dom/HWBColorImpl.java
index c69a7ed..e2c708b 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/HWBColorImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/HWBColorImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/LABColorImpl.java b/src/main/java/org/htmlunit/cssparser/dom/LABColorImpl.java
index dc49330..34e0775 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/LABColorImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/LABColorImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/LCHColorImpl.java b/src/main/java/org/htmlunit/cssparser/dom/LCHColorImpl.java
index 20e4f6d..d38bd63 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/LCHColorImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/LCHColorImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/MediaListImpl.java b/src/main/java/org/htmlunit/cssparser/dom/MediaListImpl.java
index 398d9a8..8da6c54 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/MediaListImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/MediaListImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/Property.java b/src/main/java/org/htmlunit/cssparser/dom/Property.java
index fa1229b..c24bb14 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/Property.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/Property.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/RGBColorImpl.java b/src/main/java/org/htmlunit/cssparser/dom/RGBColorImpl.java
index d44e224..25fd9ee 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/RGBColorImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/RGBColorImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/RectImpl.java b/src/main/java/org/htmlunit/cssparser/dom/RectImpl.java
index 2078e2f..1b046c9 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/RectImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/RectImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/dom/package-info.java b/src/main/java/org/htmlunit/cssparser/dom/package-info.java
index b0198ab..bafbd64 100644
--- a/src/main/java/org/htmlunit/cssparser/dom/package-info.java
+++ b/src/main/java/org/htmlunit/cssparser/dom/package-info.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/AbstractCSSParser.java b/src/main/java/org/htmlunit/cssparser/parser/AbstractCSSParser.java
index 405596d..12159d7 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/AbstractCSSParser.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/AbstractCSSParser.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/AbstractLocatable.java b/src/main/java/org/htmlunit/cssparser/parser/AbstractLocatable.java
index 25eb947..496a325 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/AbstractLocatable.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/AbstractLocatable.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/CSSErrorHandler.java b/src/main/java/org/htmlunit/cssparser/parser/CSSErrorHandler.java
index 95079db..f74e5a5 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/CSSErrorHandler.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/CSSErrorHandler.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/CSSException.java b/src/main/java/org/htmlunit/cssparser/parser/CSSException.java
index 8030bb7..32e985d 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/CSSException.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/CSSException.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/CSSOMParser.java b/src/main/java/org/htmlunit/cssparser/parser/CSSOMParser.java
index 8cc45ee..faa8f07 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/CSSOMParser.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/CSSOMParser.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/CSSParseException.java b/src/main/java/org/htmlunit/cssparser/parser/CSSParseException.java
index 9a120a7..70df78f 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/CSSParseException.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/CSSParseException.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/DocumentHandler.java b/src/main/java/org/htmlunit/cssparser/parser/DocumentHandler.java
index 904ea63..136689c 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/DocumentHandler.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/DocumentHandler.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/HandlerBase.java b/src/main/java/org/htmlunit/cssparser/parser/HandlerBase.java
index d92dab6..b74ba60 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/HandlerBase.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/HandlerBase.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/InputSource.java b/src/main/java/org/htmlunit/cssparser/parser/InputSource.java
index dffc85d..b6c53d9 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/InputSource.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/InputSource.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/LexicalUnit.java b/src/main/java/org/htmlunit/cssparser/parser/LexicalUnit.java
index 0b101de..08474e6 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/LexicalUnit.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/LexicalUnit.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/LexicalUnitImpl.java b/src/main/java/org/htmlunit/cssparser/parser/LexicalUnitImpl.java
index 8493461..737ff3b 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/LexicalUnitImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/LexicalUnitImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/Locatable.java b/src/main/java/org/htmlunit/cssparser/parser/Locatable.java
index f9db2ba..bfcebe0 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/Locatable.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/Locatable.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/Locator.java b/src/main/java/org/htmlunit/cssparser/parser/Locator.java
index 2efaa2f..e795e96 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/Locator.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/Locator.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/AttributeCondition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/AttributeCondition.java
index 34610bf..2005e79 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/AttributeCondition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/AttributeCondition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/BeginHyphenAttributeCondition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/BeginHyphenAttributeCondition.java
index 80d9b27..676bd5e 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/BeginHyphenAttributeCondition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/BeginHyphenAttributeCondition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/ClassCondition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/ClassCondition.java
index 1598762..41b031a 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/ClassCondition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/ClassCondition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/Condition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/Condition.java
index 0f70dce..a38064e 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/Condition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/Condition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/IdCondition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/IdCondition.java
index 6c58026..7cfca66 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/IdCondition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/IdCondition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/LangCondition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/LangCondition.java
index 4632660..1edc016 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/LangCondition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/LangCondition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/NotPseudoClassCondition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/NotPseudoClassCondition.java
index 6350d4b..7a8f3e3 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/NotPseudoClassCondition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/NotPseudoClassCondition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/OneOfAttributeCondition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/OneOfAttributeCondition.java
index 5e5b16e..60225e2 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/OneOfAttributeCondition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/OneOfAttributeCondition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/PrefixAttributeCondition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/PrefixAttributeCondition.java
index 1869c8e..185a3f2 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/PrefixAttributeCondition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/PrefixAttributeCondition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/PseudoClassCondition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/PseudoClassCondition.java
index 77d36d6..380af9c 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/PseudoClassCondition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/PseudoClassCondition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/SubstringAttributeCondition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/SubstringAttributeCondition.java
index 47eddae..3f147b0 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/SubstringAttributeCondition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/SubstringAttributeCondition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/SuffixAttributeCondition.java b/src/main/java/org/htmlunit/cssparser/parser/condition/SuffixAttributeCondition.java
index 0c97feb..fdc6836 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/SuffixAttributeCondition.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/SuffixAttributeCondition.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/condition/package-info.java b/src/main/java/org/htmlunit/cssparser/parser/condition/package-info.java
index b65be9e..d2120ac 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/condition/package-info.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/condition/package-info.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/media/MediaQuery.java b/src/main/java/org/htmlunit/cssparser/parser/media/MediaQuery.java
index ebc9e3e..3458d6d 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/media/MediaQuery.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/media/MediaQuery.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/media/MediaQueryList.java b/src/main/java/org/htmlunit/cssparser/parser/media/MediaQueryList.java
index 045a00a..8b01ca5 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/media/MediaQueryList.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/media/MediaQueryList.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/media/package-info.java b/src/main/java/org/htmlunit/cssparser/parser/media/package-info.java
index c325e5b..8ed9118 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/media/package-info.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/media/package-info.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/package-info.java b/src/main/java/org/htmlunit/cssparser/parser/package-info.java
index 7c9439e..69939eb 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/package-info.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/package-info.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/AbstractSelector.java b/src/main/java/org/htmlunit/cssparser/parser/selector/AbstractSelector.java
index 501f02d..08afdb9 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/AbstractSelector.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/AbstractSelector.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/ChildSelector.java b/src/main/java/org/htmlunit/cssparser/parser/selector/ChildSelector.java
index 564715f..e75c6ec 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/ChildSelector.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/ChildSelector.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/DescendantSelector.java b/src/main/java/org/htmlunit/cssparser/parser/selector/DescendantSelector.java
index 9200e5c..c53d13b 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/DescendantSelector.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/DescendantSelector.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/DirectAdjacentSelector.java b/src/main/java/org/htmlunit/cssparser/parser/selector/DirectAdjacentSelector.java
index 09467f6..635fc04 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/DirectAdjacentSelector.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/DirectAdjacentSelector.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/ElementSelector.java b/src/main/java/org/htmlunit/cssparser/parser/selector/ElementSelector.java
index 3b0d76a..2ddc530 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/ElementSelector.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/ElementSelector.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/GeneralAdjacentSelector.java b/src/main/java/org/htmlunit/cssparser/parser/selector/GeneralAdjacentSelector.java
index 574ec00..5046dce 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/GeneralAdjacentSelector.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/GeneralAdjacentSelector.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/PseudoElementSelector.java b/src/main/java/org/htmlunit/cssparser/parser/selector/PseudoElementSelector.java
index 0e4f3a0..5510197 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/PseudoElementSelector.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/PseudoElementSelector.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/Selector.java b/src/main/java/org/htmlunit/cssparser/parser/selector/Selector.java
index b3be350..16b9c48 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/Selector.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/Selector.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorList.java b/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorList.java
index 1ba8dfc..f39d863 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorList.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorList.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorListImpl.java b/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorListImpl.java
index cfe420c..b45a353 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorListImpl.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorListImpl.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorSpecificity.java b/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorSpecificity.java
index f01699f..e24afc9 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorSpecificity.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/SelectorSpecificity.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/SimpleSelector.java b/src/main/java/org/htmlunit/cssparser/parser/selector/SimpleSelector.java
index 52c7b12..ade7751 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/SimpleSelector.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/SimpleSelector.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/parser/selector/package-info.java b/src/main/java/org/htmlunit/cssparser/parser/selector/package-info.java
index 6cc2b06..e10b86f 100644
--- a/src/main/java/org/htmlunit/cssparser/parser/selector/package-info.java
+++ b/src/main/java/org/htmlunit/cssparser/parser/selector/package-info.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/util/ParserUtils.java b/src/main/java/org/htmlunit/cssparser/util/ParserUtils.java
index d6b5d77..ab14a24 100644
--- a/src/main/java/org/htmlunit/cssparser/util/ParserUtils.java
+++ b/src/main/java/org/htmlunit/cssparser/util/ParserUtils.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/util/ThrowCssExceptionErrorHandler.java b/src/main/java/org/htmlunit/cssparser/util/ThrowCssExceptionErrorHandler.java
index a92037c..d86793c 100644
--- a/src/main/java/org/htmlunit/cssparser/util/ThrowCssExceptionErrorHandler.java
+++ b/src/main/java/org/htmlunit/cssparser/util/ThrowCssExceptionErrorHandler.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/java/org/htmlunit/cssparser/util/package-info.java b/src/main/java/org/htmlunit/cssparser/util/package-info.java
index 8f9bd8d..898ba80 100644
--- a/src/main/java/org/htmlunit/cssparser/util/package-info.java
+++ b/src/main/java/org/htmlunit/cssparser/util/package-info.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/main/javacc/CSS3Parser.jj b/src/main/javacc/CSS3Parser.jj
index 593a39b..8d8234f 100644
--- a/src/main/javacc/CSS3Parser.jj
+++ b/src/main/javacc/CSS3Parser.jj
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/DomTest.java b/src/test/java/org/htmlunit/cssparser/DomTest.java
index 3c2ed2c..13254d6 100644
--- a/src/test/java/org/htmlunit/cssparser/DomTest.java
+++ b/src/test/java/org/htmlunit/cssparser/DomTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/ErrorHandler.java b/src/test/java/org/htmlunit/cssparser/ErrorHandler.java
index c79e1dc..e6e98b4 100644
--- a/src/test/java/org/htmlunit/cssparser/ErrorHandler.java
+++ b/src/test/java/org/htmlunit/cssparser/ErrorHandler.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/SerializableTest.java b/src/test/java/org/htmlunit/cssparser/SerializableTest.java
index 8dd35be..fd89b82 100644
--- a/src/test/java/org/htmlunit/cssparser/SerializableTest.java
+++ b/src/test/java/org/htmlunit/cssparser/SerializableTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/TestException.java b/src/test/java/org/htmlunit/cssparser/TestException.java
index 7cc4317..5d47776 100644
--- a/src/test/java/org/htmlunit/cssparser/TestException.java
+++ b/src/test/java/org/htmlunit/cssparser/TestException.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CSSCharsetRuleImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CSSCharsetRuleImplTest.java
index ab65b4f..cde7892 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CSSCharsetRuleImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CSSCharsetRuleImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CSSFontFaceRuleImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CSSFontFaceRuleImplTest.java
index 0548654..68b7809 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CSSFontFaceRuleImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CSSFontFaceRuleImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CSSImportRuleImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CSSImportRuleImplTest.java
index d47249a..2f17f72 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CSSImportRuleImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CSSImportRuleImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CSSMediaRuleImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CSSMediaRuleImplTest.java
index 4486209..e39ae74 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CSSMediaRuleImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CSSMediaRuleImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CSSPageRuleImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CSSPageRuleImplTest.java
index 776f8bd..9006692 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CSSPageRuleImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CSSPageRuleImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CSSRuleListImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CSSRuleListImplTest.java
index 75be7a3..dffb96e 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CSSRuleListImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CSSRuleListImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CSSStyleDeclarationImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CSSStyleDeclarationImplTest.java
index e79ed39..3c5306f 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CSSStyleDeclarationImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CSSStyleDeclarationImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CSSStyleRuleImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CSSStyleRuleImplTest.java
index 2b2315f..e5ba003 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CSSStyleRuleImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CSSStyleRuleImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CSSStyleSheetImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CSSStyleSheetImplTest.java
index 3ee6b2c..91c08e7 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CSSStyleSheetImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CSSStyleSheetImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CSSUnknownRuleImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CSSUnknownRuleImplTest.java
index 1cbca10..950f8ac 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CSSUnknownRuleImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CSSUnknownRuleImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CSSValueImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CSSValueImplTest.java
index 4af7114..8daeafd 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CSSValueImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CSSValueImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/CounterImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/CounterImplTest.java
index c6f6f5c..25956db 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/CounterImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/CounterImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/HSLColorImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/HSLColorImplTest.java
index 425fab8..9de82a9 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/HSLColorImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/HSLColorImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/HWBColorImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/HWBColorImplTest.java
index db1f9ba..4ce54f9 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/HWBColorImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/HWBColorImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/LABColorImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/LABColorImplTest.java
index 9a8cfa5..7f57867 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/LABColorImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/LABColorImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/LCHColorImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/LCHColorImplTest.java
index 6a7c1ba..0f66390 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/LCHColorImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/LCHColorImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/MediaListTest.java b/src/test/java/org/htmlunit/cssparser/dom/MediaListTest.java
index 68eda5e..9403ece 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/MediaListTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/MediaListTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/PropteryTest.java b/src/test/java/org/htmlunit/cssparser/dom/PropteryTest.java
index c061edb..f321ac0 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/PropteryTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/PropteryTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/RGBColorImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/RGBColorImplTest.java
index 0ae942e..0c5a6d4 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/RGBColorImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/RGBColorImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/dom/RectImplTest.java b/src/test/java/org/htmlunit/cssparser/dom/RectImplTest.java
index b53e201..920b233 100644
--- a/src/test/java/org/htmlunit/cssparser/dom/RectImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/dom/RectImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/AbstractCSSParserTest.java b/src/test/java/org/htmlunit/cssparser/parser/AbstractCSSParserTest.java
index 2b20313..a99aa4c 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/AbstractCSSParserTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/AbstractCSSParserTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/CSS3ParserRealWorldTest.java b/src/test/java/org/htmlunit/cssparser/parser/CSS3ParserRealWorldTest.java
index aebf824..9e5bc40 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/CSS3ParserRealWorldTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/CSS3ParserRealWorldTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/CSS3ParserTest.java b/src/test/java/org/htmlunit/cssparser/parser/CSS3ParserTest.java
index 2c3a829..8b46c06 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/CSS3ParserTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/CSS3ParserTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/CSSOMParserTest.java b/src/test/java/org/htmlunit/cssparser/parser/CSSOMParserTest.java
index 92b6159..091dbd2 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/CSSOMParserTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/CSSOMParserTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/HSLColorParserTest.java b/src/test/java/org/htmlunit/cssparser/parser/HSLColorParserTest.java
index e1ccc62..f72a0e8 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/HSLColorParserTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/HSLColorParserTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/HWBColorParserTest.java b/src/test/java/org/htmlunit/cssparser/parser/HWBColorParserTest.java
index f7d0dda..5dc380b 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/HWBColorParserTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/HWBColorParserTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/ImportantTest.java b/src/test/java/org/htmlunit/cssparser/parser/ImportantTest.java
index 1f89d8b..5e63a10 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/ImportantTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/ImportantTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/LABColorParserTest.java b/src/test/java/org/htmlunit/cssparser/parser/LABColorParserTest.java
index 887f927..fec1d9d 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/LABColorParserTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/LABColorParserTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/LCHColorParserTest.java b/src/test/java/org/htmlunit/cssparser/parser/LCHColorParserTest.java
index 9f8319d..6ff38f3 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/LCHColorParserTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/LCHColorParserTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/LexicalUnitImplTest.java b/src/test/java/org/htmlunit/cssparser/parser/LexicalUnitImplTest.java
index 6b461e2..f34ae7e 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/LexicalUnitImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/LexicalUnitImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/LocatorTest.java b/src/test/java/org/htmlunit/cssparser/parser/LocatorTest.java
index 6a80dfc..0191de4 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/LocatorTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/LocatorTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/OKLABColorParserTest.java b/src/test/java/org/htmlunit/cssparser/parser/OKLABColorParserTest.java
index dcda202..d5d0d1f 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/OKLABColorParserTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/OKLABColorParserTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/OKLCHColorParserTest.java b/src/test/java/org/htmlunit/cssparser/parser/OKLCHColorParserTest.java
index f063cab..31483d6 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/OKLCHColorParserTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/OKLCHColorParserTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/RGBColorParserTest.java b/src/test/java/org/htmlunit/cssparser/parser/RGBColorParserTest.java
index 015a2c0..7e9d911 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/RGBColorParserTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/RGBColorParserTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/XhtmlCssTest.java b/src/test/java/org/htmlunit/cssparser/parser/XhtmlCssTest.java
index edaa2f0..224bfed 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/XhtmlCssTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/XhtmlCssTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/condition/AttributeConditionTest.java b/src/test/java/org/htmlunit/cssparser/parser/condition/AttributeConditionTest.java
index d3cece5..1cf5f00 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/condition/AttributeConditionTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/condition/AttributeConditionTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/condition/BeginHyphenAttributeConditionTest.java b/src/test/java/org/htmlunit/cssparser/parser/condition/BeginHyphenAttributeConditionTest.java
index 030fcee..7343c30 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/condition/BeginHyphenAttributeConditionTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/condition/BeginHyphenAttributeConditionTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/condition/ClassConditionTest.java b/src/test/java/org/htmlunit/cssparser/parser/condition/ClassConditionTest.java
index c97374d..462d6f8 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/condition/ClassConditionTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/condition/ClassConditionTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/condition/IdConditionTest.java b/src/test/java/org/htmlunit/cssparser/parser/condition/IdConditionTest.java
index 4099ee4..ad81c3b 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/condition/IdConditionTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/condition/IdConditionTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/condition/LangConditionTest.java b/src/test/java/org/htmlunit/cssparser/parser/condition/LangConditionTest.java
index f2fc9f2..57f6ac7 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/condition/LangConditionTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/condition/LangConditionTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/condition/OneOfAttributeConditionTest.java b/src/test/java/org/htmlunit/cssparser/parser/condition/OneOfAttributeConditionTest.java
index 3091b25..d87b760 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/condition/OneOfAttributeConditionTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/condition/OneOfAttributeConditionTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/condition/PrefixAttributeConditionTest.java b/src/test/java/org/htmlunit/cssparser/parser/condition/PrefixAttributeConditionTest.java
index 1cd198e..0993fcd 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/condition/PrefixAttributeConditionTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/condition/PrefixAttributeConditionTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/condition/PseudoClassConditionTest.java b/src/test/java/org/htmlunit/cssparser/parser/condition/PseudoClassConditionTest.java
index f60ae21..f8fe00b 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/condition/PseudoClassConditionTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/condition/PseudoClassConditionTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/condition/SubstringAttributeConditionTest.java b/src/test/java/org/htmlunit/cssparser/parser/condition/SubstringAttributeConditionTest.java
index 88e36c4..8eafbd1 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/condition/SubstringAttributeConditionTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/condition/SubstringAttributeConditionTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/condition/SuffixAttributeConditionTest.java b/src/test/java/org/htmlunit/cssparser/parser/condition/SuffixAttributeConditionTest.java
index 5072f5e..c91ab5c 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/condition/SuffixAttributeConditionTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/condition/SuffixAttributeConditionTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/media/CSS3MediaTest.java b/src/test/java/org/htmlunit/cssparser/parser/media/CSS3MediaTest.java
index 0a9be46..f8bf66e 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/media/CSS3MediaTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/media/CSS3MediaTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/media/MediaQueryTest.java b/src/test/java/org/htmlunit/cssparser/parser/media/MediaQueryTest.java
index 4d10475..fa68bb9 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/media/MediaQueryTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/media/MediaQueryTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/selector/ChildSelectorTest.java b/src/test/java/org/htmlunit/cssparser/parser/selector/ChildSelectorTest.java
index a3f6186..93561ed 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/selector/ChildSelectorTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/selector/ChildSelectorTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/selector/DescendantSelectorImplTest.java b/src/test/java/org/htmlunit/cssparser/parser/selector/DescendantSelectorImplTest.java
index 38ab960..ad63cb2 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/selector/DescendantSelectorImplTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/selector/DescendantSelectorImplTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/selector/DirectAdjacentSelectorTest.java b/src/test/java/org/htmlunit/cssparser/parser/selector/DirectAdjacentSelectorTest.java
index 2b4b6a7..9f10161 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/selector/DirectAdjacentSelectorTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/selector/DirectAdjacentSelectorTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/selector/ElementSelectorTest.java b/src/test/java/org/htmlunit/cssparser/parser/selector/ElementSelectorTest.java
index 8457fb0..4e23aec 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/selector/ElementSelectorTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/selector/ElementSelectorTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/selector/GeneralAdjacentSelectorTest.java b/src/test/java/org/htmlunit/cssparser/parser/selector/GeneralAdjacentSelectorTest.java
index 3c1eb72..f129483 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/selector/GeneralAdjacentSelectorTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/selector/GeneralAdjacentSelectorTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/selector/PseudoElementSelectorTest.java b/src/test/java/org/htmlunit/cssparser/parser/selector/PseudoElementSelectorTest.java
index 53777cf..0642173 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/selector/PseudoElementSelectorTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/selector/PseudoElementSelectorTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/selector/SelectorSpecificityTest.java b/src/test/java/org/htmlunit/cssparser/parser/selector/SelectorSpecificityTest.java
index 5d22467..4d6d8e8 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/selector/SelectorSpecificityTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/selector/SelectorSpecificityTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
diff --git a/src/test/java/org/htmlunit/cssparser/parser/util/ParserUtilsTest.java b/src/test/java/org/htmlunit/cssparser/parser/util/ParserUtilsTest.java
index 14776fc..eec4997 100644
--- a/src/test/java/org/htmlunit/cssparser/parser/util/ParserUtilsTest.java
+++ b/src/test/java/org/htmlunit/cssparser/parser/util/ParserUtilsTest.java
@@ -4,7 +4,7 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
+ * https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,