quarkusio / quarkus-quickstarts

Quarkus quickstart code
https://quarkus.io
Apache License 2.0
1.94k stars 1.44k forks source link

All quickstarts's pom.xml files should use Maven XSD #930

Open ge0ffrey opened 3 years ago

ge0ffrey commented 3 years ago

Description

The getting started quickstart's pom.xml file: https://raw.githubusercontent.com/quarkusio/quarkus-quickstarts/main/getting-started/pom.xml starts with

<?xml version="1.0" encoding="UTF-8"?>
<project>

No XSD, so no code completion in IDE nor validation.

Implementation ideas

Change it into

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

for all quickstarts.

famod commented 3 years ago

Thanks for reporting, but why not directly here? https://github.com/quarkusio/quarkus-quickstarts/issues