NichtHaskell/pom.xml

67 lines
2.3 KiB
XML
Raw Normal View History

2024-05-09 13:41:52 +00:00
<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>Clippit.org</groupId>
<artifactId>NichtHaskell</artifactId>
2024-07-01 15:45:07 +00:00
<version>1.0-SNAPSHOT</version>
2024-05-09 13:41:52 +00:00
<properties>
2024-07-01 15:45:07 +00:00
<java.version>22</java.version>
<maven.compiler.source>22</maven.compiler.source>
<maven.compiler.target>22</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2024-05-09 13:41:52 +00:00
</properties>
<build>
2024-07-01 15:45:07 +00:00
<finalName>${project.artifactId}</finalName>
2024-05-09 13:41:52 +00:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2024-07-01 15:45:07 +00:00
<artifactId>maven-assembly-plugin</artifactId>
<version>3.7.1</version>
<configuration>
<archive>
<manifest>
<mainClass>Compiler</mainClass>
</manifest>
</archive>
2024-07-04 16:11:02 +00:00
<finalName>NichtHaskellCompiler</finalName>
2024-07-01 15:45:07 +00:00
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
2024-05-09 13:41:52 +00:00
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
2024-06-19 10:58:09 +00:00
<scope>test</scope>
2024-05-09 13:41:52 +00:00
</dependency>
2024-05-09 13:56:23 +00:00
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.7</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>4.13.1</version>
</dependency>
2024-05-09 13:41:52 +00:00
</dependencies>
</project>