From 0dce77c605477505d2ab6796a135837f5d0e29bb Mon Sep 17 00:00:00 2001 From: SmileyFace799 Date: Thu, 15 Aug 2024 19:38:42 +0200 Subject: [PATCH] Set up maven architecture --- pom.xml | 32 +++++++++++++++++++ .../pvv/henrkgr/doorbellmatrixbot/Main.java | 7 ++++ 2 files changed, 39 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/no/ntnu/pvv/henrkgr/doorbellmatrixbot/Main.java diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..2a05362 --- /dev/null +++ b/pom.xml @@ -0,0 +1,32 @@ + + + 4.0.0 + + no.ntnu.pvv.henrkgr + doorbell-matrix-bot + 1.0-SNAPSHOT + + + 21 + 21 + UTF-8 + + + + + sonatype + https://central.sonatype.com/artifact/ + + + + + + com.cosium.matrix_communication_client + matrix-communication-client + ${1.9.0} + + + + \ No newline at end of file diff --git a/src/main/java/no/ntnu/pvv/henrkgr/doorbellmatrixbot/Main.java b/src/main/java/no/ntnu/pvv/henrkgr/doorbellmatrixbot/Main.java new file mode 100644 index 0000000..0a26967 --- /dev/null +++ b/src/main/java/no/ntnu/pvv/henrkgr/doorbellmatrixbot/Main.java @@ -0,0 +1,7 @@ +package no.ntnu.pvv.henrkgr.doorbellmatrixbot; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world"); + } +}