]> wirehaze git hosting - axolotl.git/commitdiff

wirehaze git hosting

Initial commit
authorphfr24 <phfr24@inf.ufpr.br>
Sun, 8 Feb 2026 20:45:08 +0000 (17:45 -0300)
committerphfr24 <phfr24@inf.ufpr.br>
Sun, 8 Feb 2026 20:45:08 +0000 (17:45 -0300)
.gitignore [new file with mode: 0644]
client/pom.xml [new file with mode: 0644]
pom.xml [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..6481fd9
--- /dev/null
@@ -0,0 +1,6 @@
+target/
+.settings/
+.classpath
+.project
+.mvn/
+.metadata/
\ No newline at end of file
diff --git a/client/pom.xml b/client/pom.xml
new file mode 100644 (file)
index 0000000..dae34d6
--- /dev/null
@@ -0,0 +1,39 @@
+<?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>
+       <parent>
+               <artifactId>axolotl</artifactId>
+               <groupId>ovh.wirehaze.axolotl</groupId>
+               <version>0.0.1-SNAPSHOT</version>
+       </parent>
+
+       <artifactId>client</artifactId>
+
+       <name>client</name>
+
+       <dependencies>
+               <dependency>
+                       <groupId>org.igniterealtime.smack</groupId>
+                       <artifactId>smack-core</artifactId>
+                       <version>4.4.8</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.igniterealtime.smack</groupId>
+                       <artifactId>smack-tcp</artifactId>
+                       <version>4.4.8</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.igniterealtime.smack</groupId>
+                       <artifactId>smack-im</artifactId>
+                       <version>4.4.8</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.junit.jupiter</groupId>
+                       <artifactId>junit-jupiter</artifactId>
+                       <version>${junit.version}</version>
+                       <scope>test</scope>
+               </dependency>
+       </dependencies>
+</project>
diff --git a/pom.xml b/pom.xml
new file mode 100644 (file)
index 0000000..5b66d6c
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,21 @@
+<?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>ovh.wirehaze.axolotl</groupId>
+       <artifactId>axolotl</artifactId>
+       <version>0.0.1-SNAPSHOT</version>
+       <packaging>pom</packaging>
+       <name>Axolotl</name>
+       <url>https://axolotl.wirehaze.ovh</url>
+       <description>Java XMPP client and server suite.</description>
+       <modules>
+               <module>client</module>
+       </modules>
+       <properties>
+               <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+               <maven.compiler.release>25</maven.compiler.release>
+               <junit.version>6.0.2</junit.version>
+       </properties>
+</project>