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>
|
2024-09-12 12:42:09 +00:00
|
|
|
<version>4.13.2</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>
|
2024-09-12 12:42:09 +00:00
|
|
|
<version>2.16.1</version>
|
2018-12-20 11:26:37 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-05-23 09:39:56 +00:00
|
|
|
<groupId>io.github.classgraph</groupId>
|
|
|
|
<artifactId>classgraph</artifactId>
|
|
|
|
<version>4.8.172</version>
|
2018-12-20 11:26:37 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-05-23 09:39:56 +00:00
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>33.2.0-jre</version>
|
2018-12-20 11:26:37 +00:00
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.ow2.asm/asm -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
2023-06-05 11:14:00 +00:00
|
|
|
<version>9.5</version>
|
2018-12-20 11:26:37 +00:00
|
|
|
</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>
|
2023-06-01 18:59:16 +00:00
|
|
|
<version>3.11.0</version>
|
2019-02-24 14:06:34 +00:00
|
|
|
<configuration>
|
2022-11-28 12:38:31 +00:00
|
|
|
<compilerArgs>--enable-preview</compilerArgs>
|
2023-10-18 14:54:41 +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>
|
2023-06-03 15:33:08 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<configuration>
|
2024-03-08 16:20:54 +00:00
|
|
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
|
|
|
<reportsDirectory>${project.build.directory}/test-reports</reportsDirectory>
|
2023-06-03 15:33:08 +00:00
|
|
|
<argLine>--enable-preview</argLine>
|
2024-04-10 07:58:01 +00:00
|
|
|
<trimStackTrace>false</trimStackTrace>
|
2023-06-21 08:10:32 +00:00
|
|
|
<excludes>
|
|
|
|
<exclude>**/JavaTXCompilerTest.java</exclude>
|
2024-03-14 12:50:56 +00:00
|
|
|
<exclude>**/AllgemeinTest.java</exclude>
|
2024-03-08 16:30:01 +00:00
|
|
|
<exclude>**/syntaxtreegenerator/*.java</exclude>
|
2023-06-21 08:10:32 +00:00
|
|
|
</excludes>
|
2023-06-03 15:33:08 +00:00
|
|
|
</configuration>
|
|
|
|
</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>
|
2023-06-28 20:12:28 +00:00
|
|
|
<version>3.3.0</version>
|
2023-01-17 16:42:32 +00:00
|
|
|
<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>
|
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>
|
2023-03-20 21:07:47 +00:00
|
|
|
</project>
|