Skip to content

Commit 11f8824

Browse files
committed
Fix namespaces wrongly using https
The schema usually point to an https location, but the schema usually don't.
1 parent 4e5050f commit 11f8824

File tree

2 files changed

+5
-5
lines changed
  • extensions/security-webauthn/deployment
  • test-framework/security-webauthn

2 files changed

+5
-5
lines changed

extensions/security-webauthn/deployment/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<groupId>io.quarkus</groupId>

test-framework/security-webauthn/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="https://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
66
<groupId>io.quarkus</groupId>
77
<artifactId>quarkus-test-framework</artifactId>

0 commit comments

Comments
 (0)