You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.5 KiB
113 lines
3.5 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<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>org.example</groupId> |
|
<artifactId>Widerhall</artifactId> |
|
<version>0.2.28</version> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.10.1</version> |
|
<configuration> |
|
<source>16</source> |
|
<target>16</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
<version>3.3.0</version> |
|
<configuration> |
|
<archive> |
|
<manifest> |
|
<mainClass>de.srsoftware.widerhall.Application</mainClass> |
|
</manifest> |
|
</archive> |
|
<descriptorRefs> |
|
<descriptorRef>jar-with-dependencies</descriptorRef> |
|
</descriptorRefs> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<properties> |
|
<maven.compiler.source>17</maven.compiler.source> |
|
<maven.compiler.target>17</maven.compiler.target> |
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-server</artifactId> |
|
<version>10.0.9</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-servlet</artifactId> |
|
<version>10.0.9</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-util</artifactId> |
|
<version>10.0.9</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>de.srsoftware</groupId> |
|
<artifactId>tools.translations</artifactId> |
|
<version>1.1.3</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.sun.mail</groupId> |
|
<artifactId>javax.mail</artifactId> |
|
<version>1.6.2</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax</groupId> |
|
<artifactId>javaee-api</artifactId> |
|
<version>8.0.1</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>ch.qos.logback</groupId> |
|
<artifactId>logback-classic</artifactId> |
|
<version>1.3.0-alpha13</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>ch.qos.logback</groupId> |
|
<artifactId>logback-core</artifactId> |
|
<version>1.3.0-alpha13</version> |
|
</dependency> |
|
|
|
|
|
<dependency> |
|
<groupId>com.googlecode.json-simple</groupId> |
|
<artifactId>json-simple</artifactId> |
|
<version>1.1.1</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.xerial</groupId> |
|
<artifactId>sqlite-jdbc</artifactId> |
|
<version>3.36.0.3</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.antlr</groupId> |
|
<artifactId>ST4</artifactId> |
|
<version>4.3.3</version> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|