You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using https://www.lwjgl.org/customize to create a pom.xml, the pom.xml is not valid. It needs at least a <project/> tag around the content that is currently generated. Maybe also add some other defaults like this:
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>my-lwjgl-app</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>My LWJGL Application</name>
.... current generated XML....
</project>
That way, users can directly run `mvn install`
The text was updated successfully, but these errors were encountered:
When using https://www.lwjgl.org/customize to create a pom.xml, the pom.xml is not valid. It needs at least a
<project/>
tag around the content that is currently generated. Maybe also add some other defaults like this:The text was updated successfully, but these errors were encountered: