summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorXander <xander@biltopia.org>2023-10-08 21:37:35 +0200
committerXander <xander@biltopia.org>2023-10-08 21:37:35 +0200
commita5a1daa80b386c6ca43b651a2c2dae2f53db6afd (patch)
tree83b34631828761256116ab7c0eab43b1f9149590 /pom.xml
downloadteams-speedrun-a5a1daa80b386c6ca43b651a2c2dae2f53db6afd.tar.xz
teams-speedrun-a5a1daa80b386c6ca43b651a2c2dae2f53db6afd.zip
First commitHEADmaster
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..16118b5
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,33 @@
+<?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.biltopia</groupId>
+ <artifactId>speedrun</artifactId>
+ <version>1.0-SNAPSHOT</version>
+
+ <properties>
+ <maven.compiler.source>17</maven.compiler.source>
+ <maven.compiler.target>17</maven.compiler.target>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <repositories>
+ <repository>
+ <id>spigot-repo</id>
+ <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
+ </repository>
+ </repositories>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.spigotmc</groupId>
+ <artifactId>spigot-api</artifactId>
+ <version>1.20.1-R0.1-SNAPSHOT</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+</project> \ No newline at end of file