From 252dd9ae8c367c2068e6cb7df5ed285ee479106c Mon Sep 17 00:00:00 2001 From: Muhammad Raufu Miah <raufutu@hotmail.de> Date: Mon, 1 Apr 2024 00:07:23 +0200 Subject: [PATCH] Upload New File --- pom.xml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..2ca89da --- /dev/null +++ b/pom.xml @@ -0,0 +1,41 @@ +<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>org.example</groupId> + <artifactId>nijika</artifactId> + <version>1.0-SNAPSHOT</version> + <name>Archetype - nijika</name> + <url>http://maven.apache.org</url> + <properties> + <maven.compiler.source>20.0</maven.compiler.source> + <maven.compiler.target>20.0</maven.compiler.target> + </properties> + <dependencies> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-simple</artifactId> + <version>2.0.0-alpha0</version> + <scope>runtime</scope> + </dependency> + <!-- other dependencies --> + <dependency> + <groupId>org.knowm.xchart</groupId> + <artifactId>xchart</artifactId> + <version>3.8.5</version> + </dependency> + <dependency> + <groupId>de.learnlib.distribution</groupId> + <artifactId>learnlib-distribution</artifactId> + <version>0.17.0</version> + <type>pom</type> + </dependency> + <dependency> + <groupId>net.automatalib.distribution</groupId> + <artifactId>automata-distribution</artifactId> + <version>0.11.0</version> + <type>pom</type> + </dependency> + + + </dependencies> +</project> -- GitLab