pom Update
This commit is contained in:
116
pom.xml
116
pom.xml
@@ -1,54 +1,74 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>de.dogfire.dqfl</groupId>
|
<groupId>de.dogfire.dqfl</groupId>
|
||||||
<artifactId>dqfl-core</artifactId>
|
<artifactId>dqfl-core</artifactId>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>DQFL Core Library</name>
|
<name>DQFL Core Library</name>
|
||||||
<description>Dogfire Quiz Flow Language V1 - Parser, Validator, and Model</description>
|
<description>Dogfire Quiz Flow Language V1 - Parser, Validator, and Model</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<maven.compiler.release>17</maven.compiler.release>
|
<maven.compiler.release>17</maven.compiler.release>
|
||||||
<maven.compiler.source>17</maven.compiler.source>
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
<maven.compiler.target>17</maven.compiler.target>
|
<maven.compiler.target>17</maven.compiler.target>
|
||||||
<java.version>17</java.version>
|
<java.version>17</java.version>
|
||||||
<junit.version>5.10.2</junit.version>
|
<junit.version>5.10.2</junit.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.junit.jupiter</groupId>
|
<groupId>org.junit.jupiter</groupId>
|
||||||
<artifactId>junit-jupiter</artifactId>
|
<artifactId>junit-jupiter</artifactId>
|
||||||
<version>${junit.version}</version>
|
<version>${junit.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<repositories>
|
||||||
<plugins>
|
<repository>
|
||||||
<plugin>
|
<id>gitea</id>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<url>https://dein-gitea-server/api/packages/pat201290/maven</url>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
</repository>
|
||||||
<version>3.11.0</version>
|
</repositories>
|
||||||
<configuration>
|
|
||||||
<release>${maven.compiler.release}</release>
|
<distributionManagement>
|
||||||
</configuration>
|
<repository>
|
||||||
</plugin>
|
<id>gitea</id>
|
||||||
<plugin>
|
<url>https://dein-gitea-server/api/packages/pat201290/maven</url>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</repository>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<snapshotRepository>
|
||||||
<version>3.2.5</version>
|
<id>gitea</id>
|
||||||
</plugin>
|
<url>https://dein-gitea-server/api/packages/pat201290/maven</url>
|
||||||
<plugin>
|
</snapshotRepository>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</distributionManagement>
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<version>3.3.0</version>
|
<build>
|
||||||
</plugin>
|
<plugins>
|
||||||
</plugins>
|
<plugin>
|
||||||
</build>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
</project>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.11.0</version>
|
||||||
|
<configuration>
|
||||||
|
<release>${maven.compiler.release}</release>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>3.2.5</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</project>
|
||||||
Reference in New Issue
Block a user