Skip to content

Commit

Permalink
Merge branch 'master' into dev/sql
Browse files Browse the repository at this point in the history
  • Loading branch information
0PandaDEV committed Jul 19, 2024
2 parents b6c3cd0 + 55afb5d commit eea7103
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Nextron Nightly Builds

on:
push:
branches:
branches:
- '*'
- 'dev/**'
pull_request:
branches:
branches:
- '*'
- 'dev/**'
workflow_dispatch:
Expand Down
20 changes: 16 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,24 @@
<filters>
<filter>
<artifact>*:*</artifact>
<excludeDefaults>false</excludeDefaults>
<includes>
<include>net/wesjd/anvilgui/**</include>
</includes>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>META-INF/DEPENDENCIES</exclude>
<exclude>META-INF/LICENSE</exclude>
<exclude>META-INF/NOTICE</exclude>
<exclude>META-INF/versions/9/module-info.class</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer"/>
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer">
<addHeader>false</addHeader>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import org.bukkit.Location;
import org.bukkit.entity.Player;

@Command(name = "top")
@Command(name = "top", aliases = {"touchgrass"})
@Permission("nextron.top")
public class TopCommand extends HelpBase {

Expand Down

0 comments on commit eea7103

Please sign in to comment.