Skip to content
This repository was archived by the owner on May 22, 2023. It is now read-only.

Commit 8afea09

Browse files
authored
Merge pull request #2 from Sentropic/s1.95
s1.95
2 parents de34bc0 + 13eaf5c commit 8afea09

24 files changed

+957
-163
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
.idea/
22
*.iml
3-
lib/
4-
pom.xml
53
/*target
64
editor/js/data/data generator/Biome.java
75
editor/js/data/data generator/EntityDamageEvent.java

editor/js/component.js

Lines changed: 75 additions & 49 deletions
Large diffs are not rendered by default.

editor/js/data/data.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ function getEntities() {
2828
return DATA.ENTITIES;
2929
}
3030

31+
function getAnyEntities() {
32+
return [ 'Any', ...DATA.ENTITIES ];
33+
}
34+
3135
function getParticles() {
3236
return DATA.PARTICLES || [];
3337
}

pom.xml

Lines changed: 185 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,185 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.sucy.skill</groupId>
8+
<artifactId>SkillAPI</artifactId>
9+
<version>1.95</version>
10+
<packaging>jar</packaging>
11+
12+
<name>SkillAPI</name>
13+
14+
<description>A Minecraft Bukkit plugin aiming to provide an easy code API and skill editor for all server owners to
15+
create unique and fully custom classes and skills.
16+
</description>
17+
<properties>
18+
<java.version>1.8</java.version>
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20+
</properties>
21+
<url>https://www.spigotmc.org/resources/skillapi.4824/</url>
22+
23+
<build>
24+
<plugins>
25+
<plugin>
26+
<groupId>org.apache.maven.plugins</groupId>
27+
<artifactId>maven-compiler-plugin</artifactId>
28+
<version>3.8.1</version>
29+
<configuration>
30+
<source>${java.version}</source>
31+
<target>${java.version}</target>
32+
</configuration>
33+
</plugin>
34+
<plugin>
35+
<groupId>org.apache.maven.plugins</groupId>
36+
<artifactId>maven-shade-plugin</artifactId>
37+
<version>3.2.4</version>
38+
<executions>
39+
<execution>
40+
<phase>package</phase>
41+
<goals>
42+
<goal>shade</goal>
43+
</goals>
44+
<configuration>
45+
<createDependencyReducedPom>false</createDependencyReducedPom>
46+
</configuration>
47+
</execution>
48+
</executions>
49+
</plugin>
50+
</plugins>
51+
<resources>
52+
<resource>
53+
<directory>src/main/resources</directory>
54+
<filtering>true</filtering>
55+
</resource>
56+
</resources>
57+
</build>
58+
59+
<repositories>
60+
<repository>
61+
<id>spigotmc-repo</id>
62+
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
63+
</repository>
64+
<repository>
65+
<id>sonatype</id>
66+
<url>https://oss.sonatype.org/content/groups/public/</url>
67+
</repository>
68+
<repository>
69+
<id>placeholderapi</id>
70+
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
71+
</repository>
72+
<repository>
73+
<id>bungeecord-repo</id>
74+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
75+
</repository>
76+
<repository>
77+
<id>md_5-snapshots</id>
78+
<url>https://repo.md-5.net/content/repositories/snapshots/</url>
79+
</repository>
80+
<repository>
81+
<id>nexus</id>
82+
<name>Lumine Releases</name>
83+
<url>https://mvn.lumine.io/repository/maven-public/</url>
84+
</repository>
85+
<repository>
86+
<id>jitpack.io</id>
87+
<url>https://jitpack.io</url>
88+
</repository>
89+
<repository>
90+
<id>sk89q-repo</id>
91+
<url>https://maven.enginehub.org/repo/</url>
92+
</repository>
93+
<repository>
94+
<id>dmulloy2-repo</id>
95+
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
96+
</repository>
97+
</repositories>
98+
99+
<dependencies>
100+
<dependency>
101+
<groupId>org.spigotmc</groupId>
102+
<artifactId>spigot-api</artifactId>
103+
<version>1.15.2-R0.1-SNAPSHOT</version>
104+
<scope>provided</scope>
105+
</dependency>
106+
<dependency>
107+
<groupId>com.rit.sucy</groupId>
108+
<artifactId>mccore</artifactId>
109+
<version>1.67</version>
110+
<scope>provided</scope>
111+
</dependency>
112+
<dependency>
113+
<groupId>com.sucy.party</groupId>
114+
<artifactId>parties</artifactId>
115+
<version>1.13</version>
116+
<scope>provided</scope>
117+
</dependency>
118+
<dependency>
119+
<groupId>io.netty</groupId>
120+
<artifactId>netty-all</artifactId>
121+
<version>4.1.51.Final</version>
122+
<scope>provided</scope>
123+
</dependency>
124+
<dependency>
125+
<groupId>ru.endlesscode</groupId>
126+
<artifactId>rpginventory</artifactId>
127+
<version>1.0.6</version>
128+
<scope>provided</scope>
129+
</dependency>
130+
<dependency>
131+
<groupId>LibsDisguises</groupId>
132+
<artifactId>LibsDisguises</artifactId>
133+
<version>10.0.16-SNAPSHOT-b722</version>
134+
<scope>provided</scope>
135+
</dependency>
136+
<dependency>
137+
<groupId>me.clip</groupId>
138+
<artifactId>placeholderapi</artifactId>
139+
<version>2.10.9</version>
140+
<scope>provided</scope>
141+
</dependency>
142+
<dependency>
143+
<groupId>net.md-5</groupId>
144+
<artifactId>bungeecord-api</artifactId>
145+
<version>1.16-R0.2-SNAPSHOT</version>
146+
<type>jar</type>
147+
<scope>provided</scope>
148+
</dependency>
149+
<dependency>
150+
<groupId>fr.neatmonster</groupId>
151+
<artifactId>nocheatplus</artifactId>
152+
<version>3.16.1-SNAPSHOT</version>
153+
<scope>provided</scope>
154+
</dependency>
155+
<dependency>
156+
<groupId>io.lumine.xikage</groupId>
157+
<artifactId>MythicMobs</artifactId>
158+
<version>4.9.1</version>
159+
<scope>provided</scope>
160+
</dependency>
161+
<dependency>
162+
<groupId>com.github.MilkBowl</groupId>
163+
<artifactId>VaultAPI</artifactId>
164+
<version>1.7</version>
165+
<scope>provided</scope>
166+
</dependency>
167+
<dependency>
168+
<groupId>com.sk89q.worldguard</groupId>
169+
<artifactId>worldguard-bukkit</artifactId>
170+
<version>7.0.3</version>
171+
<scope>provided</scope>
172+
</dependency>
173+
<dependency>
174+
<groupId>com.comphenix.protocol</groupId>
175+
<artifactId>ProtocolLib</artifactId>
176+
<version>4.5.0</version>
177+
</dependency>
178+
<dependency>
179+
<groupId>com.sk89q.worldedit</groupId>
180+
<artifactId>worldedit-core</artifactId>
181+
<version>7.1.0</version>
182+
<scope>provided</scope>
183+
</dependency>
184+
</dependencies>
185+
</project>

0 commit comments

Comments
 (0)