Skip to content

Commit 191b3b6

Browse files
committed
Upload
1 parent 5035823 commit 191b3b6

84 files changed

Lines changed: 17310 additions & 7 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ local.properties
8585
.mtj.tmp/
8686

8787
# Package Files #
88-
*.jar
89-
*.war
90-
*.nar
91-
*.ear
92-
*.zip
93-
*.tar.gz
94-
*.rar
88+
#*.jar
89+
#*.war
90+
#*.nar
91+
#*.ear
92+
#*.zip
93+
#*.tar.gz
94+
#*.rar
9595

9696
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
9797
hs_err_pid*

lib/CMIAPI7.6.2.0.jar

481 KB
Binary file not shown.

lib/LightAPI-fork-3.4.4.jar

116 KB
Binary file not shown.

lib/OpenInv.jar

148 KB
Binary file not shown.

lib/spigot-1.11.2.jar

23.4 MB
Binary file not shown.

lib/spigot-1.16.1.jar

34.1 MB
Binary file not shown.

pom.xml

Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>InteractionVisualizer</groupId>
6+
<artifactId>InteractionVisualizer</artifactId>
7+
<version>1.13.5</version>
8+
<build>
9+
<sourceDirectory>src</sourceDirectory>
10+
<resources>
11+
<resource>
12+
<directory>src</directory>
13+
<excludes>
14+
<exclude>**/*.java</exclude>
15+
</excludes>
16+
</resource>
17+
</resources>
18+
<plugins>
19+
<plugin>
20+
<groupId>org.apache.maven.plugins</groupId>
21+
<artifactId>maven-compiler-plugin</artifactId>
22+
<version>3.7.0</version>
23+
<configuration>
24+
<source>1.8</source>
25+
<target>1.8</target>
26+
</configuration>
27+
</plugin>
28+
<plugin>
29+
<groupId>org.apache.maven.plugins</groupId>
30+
<artifactId>maven-shade-plugin</artifactId>
31+
<version>3.1.0</version>
32+
<executions>
33+
<execution>
34+
<phase>package</phase>
35+
<goals>
36+
<goal>shade</goal>
37+
</goals>
38+
<configuration>
39+
<createDependencyReducedPom>false</createDependencyReducedPom>
40+
</configuration>
41+
</execution>
42+
</executions>
43+
</plugin>
44+
</plugins>
45+
</build>
46+
47+
<repositories>
48+
<repository>
49+
<id>placeholderapi</id>
50+
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
51+
</repository>
52+
<repository>
53+
<id>spigot-repo</id>
54+
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
55+
</repository>
56+
<repository>
57+
<id>ess-repo</id>
58+
<url>https://ci.ender.zone/plugin/repository/everything/</url>
59+
</repository>
60+
<repository>
61+
<id>paper-repo</id>
62+
<url>https://papermc.io/repo/repository/maven-public/</url>
63+
</repository>
64+
<repository>
65+
<id>jitpack.io</id>
66+
<url>https://jitpack.io</url>
67+
</repository>
68+
<repository>
69+
<id>dmulloy2-repo</id>
70+
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
71+
</repository>
72+
</repositories>
73+
74+
<dependencies>
75+
<dependency>
76+
<groupId>me.clip</groupId>
77+
<artifactId>placeholderapi</artifactId>
78+
<version>2.10.6</version>
79+
<scope>provided</scope>
80+
</dependency>
81+
<dependency>
82+
<groupId>org.spigotmc</groupId>
83+
<artifactId>spigot-api</artifactId>
84+
<version>1.16.1-R0.1-SNAPSHOT</version>
85+
<scope>provided</scope>
86+
</dependency>
87+
<dependency>
88+
<groupId>net.ess3</groupId>
89+
<artifactId>EssentialsX</artifactId>
90+
<version>2.17.2</version>
91+
<scope>provided</scope>
92+
</dependency>
93+
<dependency>
94+
<groupId>com.github.MyzelYam</groupId>
95+
<artifactId>PremiumVanishAPI</artifactId>
96+
<version>2.0.3</version>
97+
</dependency>
98+
<dependency>
99+
<groupId>com.comphenix.protocol</groupId>
100+
<artifactId>ProtocolLib</artifactId>
101+
<version>4.5.1</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>OpenInv</groupId>
105+
<artifactId>OpenInv</artifactId>
106+
<scope>system</scope>
107+
<version>1.0</version>
108+
<systemPath>${basedir}/lib/OpenInv.jar</systemPath>
109+
</dependency>
110+
<dependency>
111+
<groupId>LightAPI-Fork</groupId>
112+
<artifactId>LightAPI-Fork</artifactId>
113+
<scope>system</scope>
114+
<version>1.0</version>
115+
<systemPath>${basedir}/lib/LightAPI-fork-3.4.4.jar</systemPath>
116+
</dependency>
117+
<dependency>
118+
<groupId>CMIAPI</groupId>
119+
<artifactId>CMIAPI</artifactId>
120+
<scope>system</scope>
121+
<version>1.0</version>
122+
<systemPath>${basedir}/lib/CMIAPI7.6.2.0.jar</systemPath>
123+
</dependency>
124+
<dependency>
125+
<groupId>Spigot-1.11.2</groupId>
126+
<artifactId>Spigot-1.11.2</artifactId>
127+
<scope>system</scope>
128+
<version>1.0</version>
129+
<systemPath>${basedir}/lib/spigot-1.11.2.jar</systemPath>
130+
</dependency>
131+
<dependency>
132+
<groupId>Spigot-1.16.1</groupId>
133+
<artifactId>Spigot-1.16.1</artifactId>
134+
<scope>system</scope>
135+
<version>1.0</version>
136+
<systemPath>${basedir}/lib/spigot-1.16.1.jar</systemPath>
137+
</dependency>
138+
</dependencies>
139+
</project>

0 commit comments

Comments
 (0)