Skip to content

Commit 8f8559b

Browse files
committed
Version 1.0.3
1 parent ce66f6e commit 8f8559b

29 files changed

+1476
-0
lines changed

Rail-Boost/.idea/.gitignore

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Rail-Boost/.idea/compiler.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Rail-Boost/.idea/encodings.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Rail-Boost/.idea/jarRepositories.xml

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Rail-Boost/.idea/misc.xml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Rail-Boost/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Rail-Boost/pom.xml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>de.railboost</groupId>
6+
<artifactId>Rail-Boost</artifactId>
7+
<version>1.0.3-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
<name>Rail-Boost</name>
10+
<description>Minecraft RailBoost Plugin</description>
11+
<properties>
12+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13+
<maven.compiler.source>17</maven.compiler.source>
14+
<maven.compiler.target>17</maven.compiler.target>
15+
</properties>
16+
<repositories>
17+
<repository>
18+
<id>spigot-repo</id>
19+
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
20+
</repository>
21+
</repositories>
22+
<dependencies>
23+
<dependency>
24+
<groupId>org.spigotmc</groupId>
25+
<artifactId>spigot-api</artifactId>
26+
<version>1.19.4-R0.1-SNAPSHOT</version>
27+
<scope>provided</scope>
28+
</dependency>
29+
</dependencies>
30+
<build>
31+
<plugins>
32+
<plugin>
33+
<groupId>org.apache.maven.plugins</groupId>
34+
<artifactId>maven-compiler-plugin</artifactId>
35+
<version>3.8.1</version>
36+
<configuration>
37+
<source>17</source>
38+
<target>17</target>
39+
</configuration>
40+
</plugin>
41+
</plugins>
42+
</build>
43+
</project>

0 commit comments

Comments
 (0)