2018-12-20 11:26:37 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2018-01-19 13:33:54 +00:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-12-20 11:26:37 +00:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
2019-01-11 14:16:29 +00:00
|
|
|
http://maven.apache.org/maven-v4_0_0.xsd">
|
2018-12-20 11:26:37 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>de.dhbwstuttgart</groupId>
|
|
|
|
<artifactId>JavaTXcompiler</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2018-01-19 13:33:54 +00:00
|
|
|
|
2019-11-27 20:40:35 +00:00
|
|
|
<version>0.1</version>
|
2018-12-20 11:26:37 +00:00
|
|
|
<name>JavaTXcompiler</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2019-07-25 20:24:06 +00:00
|
|
|
<version>4.11</version>
|
2018-12-20 11:26:37 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-01-10 12:48:21 +00:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.antlr/antlr4 -->
|
2018-12-20 11:26:37 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4</artifactId>
|
2023-01-10 12:48:21 +00:00
|
|
|
<version>4.11.1</version>
|
2018-12-20 11:26:37 +00:00
|
|
|
</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>
|
2018-03-12 23:24:40 +00:00
|
|
|
|
2018-12-20 11:26:37 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2019-02-24 14:06:34 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2022-11-28 12:38:31 +00:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.0</version>
|
2019-02-24 14:06:34 +00:00
|
|
|
<configuration>
|
2022-11-28 12:38:31 +00:00
|
|
|
<compilerArgs>--enable-preview</compilerArgs>
|
2023-12-26 15:45:35 +00:00
|
|
|
<source>21</source>
|
|
|
|
<target>21</target>
|
2023-01-10 12:48:21 +00:00
|
|
|
</configuration>
|
2019-02-24 14:06:34 +00:00
|
|
|
</plugin>
|
2018-12-20 11:26:37 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
2023-01-10 12:48:21 +00:00
|
|
|
<version>4.11.1</version>
|
2018-12-20 11:26:37 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>antlr</id>
|
|
|
|
<goals>
|
|
|
|
<goal>antlr4</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2023-01-17 16:42:32 +00:00
|
|
|
<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>
|
2018-12-20 11:26:37 +00:00
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>maven-repository</id>
|
|
|
|
<url>file:///${project.basedir}/target</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<properties>
|
2022-11-28 12:38:31 +00:00
|
|
|
<maven.compiler.source>19</maven.compiler.source>
|
|
|
|
<maven.compiler.target>19</maven.compiler.target>
|
2019-12-26 18:43:00 +00:00
|
|
|
<mainClass>de.dhbwstuttgart.core.ConsoleInterface</mainClass>
|
2018-12-20 11:26:37 +00:00
|
|
|
</properties>
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>maven-repository</id>
|
|
|
|
<name>MyCo Internal Repository</name>
|
|
|
|
<url>file:///${project.basedir}/maven-repository/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2018-01-19 13:33:54 +00:00
|
|
|
</project>
|