quarkus-quickstarts icon indicating copy to clipboard operation
quarkus-quickstarts copied to clipboard

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

Open ge0ffrey opened this issue 4 years ago • 1 comments

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.

ge0ffrey avatar Sep 01 '21 14:09 ge0ffrey

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

famod avatar Sep 01 '21 15:09 famod