forked from i21017/JavaTypeUnify
126 lines
3.3 KiB
XML
126 lines
3.3 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/maven-v4_0_0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>de.dhbwstuttgart</groupId>
|
||
|
<artifactId>JavaTXcompiler</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<version>0.1</version>
|
||
|
<name>JavaTXcompiler</name>
|
||
|
<url>http://maven.apache.org</url>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.11</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/org.antlr/antlr4 -->
|
||
|
<dependency>
|
||
|
<groupId>org.antlr</groupId>
|
||
|
<artifactId>antlr4</artifactId>
|
||
|
<version>4.11.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-io</groupId>
|
||
|
<artifactId>commons-io</artifactId>
|
||
|
<version>2.6</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
<artifactId>guava</artifactId>
|
||
|
<version>22.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.reflections</groupId>
|
||
|
<artifactId>reflections</artifactId>
|
||
|
<version>0.9.11</version>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/org.ow2.asm/asm -->
|
||
|
<dependency>
|
||
|
<groupId>org.ow2.asm</groupId>
|
||
|
<artifactId>asm</artifactId>
|
||
|
<version>7.0</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.8.0</version>
|
||
|
<configuration>
|
||
|
<source>21</source>
|
||
|
<target>21</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.antlr</groupId>
|
||
|
<artifactId>antlr4-maven-plugin</artifactId>
|
||
|
<version>4.11.1</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>antlr</id>
|
||
|
<goals>
|
||
|
<goal>antlr4</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<mainClass>de.dhbwstuttgart.core.ConsoleInterface</mainClass>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>single</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<mainClass>de.dhbwstuttgart.core.ConsoleInterface</mainClass>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
<descriptorRefs>
|
||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
|
</descriptorRefs>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>maven-repository</id>
|
||
|
<url>file:///${project.basedir}/target</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
<properties>
|
||
|
<maven.compiler.source>19</maven.compiler.source>
|
||
|
<maven.compiler.target>19</maven.compiler.target>
|
||
|
<mainClass>de.dhbwstuttgart.core.ConsoleInterface</mainClass>
|
||
|
</properties>
|
||
|
<distributionManagement>
|
||
|
<repository>
|
||
|
<id>maven-repository</id>
|
||
|
<name>MyCo Internal Repository</name>
|
||
|
<url>file:///${project.basedir}/maven-repository/</url>
|
||
|
</repository>
|
||
|
</distributionManagement>
|
||
|
</project>
|