Gradle was causing to much of a headache and made the project just frustrating to work in with all these nested folders and unnecessary files
36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<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> <!-- POM Version to use -->
|
|
|
|
<groupId>dev.barink</groupId>
|
|
<artifactId>lox</artifactId>
|
|
<version>1.0</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>24</maven.compiler.source>
|
|
<maven.compiler.target>24</maven.compiler.target>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>app.Lox</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|
|
|