Skip to content

Commit 70afa3b

Browse files
committed
Updated ModuleSystem
- Fixed all Bugs in the ModuleSystem - Updated Test Plugins - Updated all APIs
1 parent 180f71b commit 70afa3b

File tree

100 files changed

+273
-192
lines changed

Some content is hidden

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

100 files changed

+273
-192
lines changed

Lcraft-BungeeCord-TestPlugin/pom.xml

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -20,43 +20,6 @@
2020
<maven.compiler.target>16</maven.compiler.target>
2121
</properties>
2222

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>16</source>
31-
<target>16</target>
32-
<encoding>UTF-8</encoding>
33-
</configuration>
34-
</plugin>
35-
<plugin>
36-
<groupId>org.apache.maven.plugins</groupId>
37-
<artifactId>maven-shade-plugin</artifactId>
38-
<version>3.2.4</version>
39-
<executions>
40-
<execution>
41-
<phase>package</phase>
42-
<goals>
43-
<goal>shade</goal>
44-
</goals>
45-
<configuration>
46-
<createDependencyReducedPom>false</createDependencyReducedPom>
47-
</configuration>
48-
</execution>
49-
</executions>
50-
</plugin>
51-
</plugins>
52-
<resources>
53-
<resource>
54-
<directory>src/main/resources</directory>
55-
<filtering>true</filtering>
56-
</resource>
57-
</resources>
58-
</build>
59-
6023
<dependencies>
6124
<dependency>
6225
<groupId>net.md-5</groupId>
@@ -81,13 +44,11 @@
8144
<groupId>de.lcraft</groupId>
8245
<artifactId>Lcraft.API.Language</artifactId>
8346
<version>1.0-SNAPSHOT</version>
84-
<scope>provided</scope>
8547
</dependency>
8648
<dependency>
8749
<groupId>de.lcraft</groupId>
8850
<artifactId>Lcraft.API.Permissions</artifactId>
8951
<version>1.0-SNAPSHOT</version>
90-
<scope>provided</scope>
9152
</dependency>
9253
</dependencies>
9354

Lcraft-BungeeCord-TestPlugin/src/main/java/de/lcraft/api/bungeecord/testplugin/TestPlugin.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,9 @@ public void onLoad() {
1313
}
1414

1515
@Override
16-
public void onEnable() {
17-
getLogger().sendModule(ModuleLoggerType.INFO, "Loaded successfully Test");
18-
}
16+
public void onEnable() { }
1917

2018
@Override
21-
public void onDisable() {
22-
23-
}
19+
public void onDisable() { }
2420

2521
}

Lcraft-BungeeCord-TestPlugin/src/main/resources/module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'Lcraft BungeeCord TestPlugin'
2-
description: This is the Permissions API
2+
description: This is the BungeeCord Plugin
33
version: '1.0'
44
bungee-main: de.lcraft.api.bungeecord.testplugin.TestPlugin
55
authors:
Binary file not shown.
Binary file not shown.

Lcraft-BungeeCord-TestPlugin/target/classes/module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'Lcraft BungeeCord TestPlugin'
2-
description: This is the Permissions API
2+
description: This is the BungeeCord Plugin
33
version: '1.0'
44
bungee-main: de.lcraft.api.bungeecord.testplugin.TestPlugin
55
authors:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Generated by Maven
2-
#Sat Nov 13 14:43:39 CET 2021
2+
#Sat Nov 13 15:52:41 CET 2021
33
groupId=de.lcraft
44
artifactId=LcraftAPI.bungeecord.test
55
version=1.0.0
Binary file not shown.
0 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Generated by Maven
2-
#Sat Nov 13 14:43:35 CET 2021
2+
#Sat Nov 13 15:52:40 CET 2021
33
groupId=de.lcraft
44
artifactId=Lcraft.API.Language
55
version=1.0-SNAPSHOT

0 commit comments

Comments
 (0)