Skip to content

Commit

Permalink
build: maven -> gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
RealRONiN committed Aug 9, 2022
1 parent a382d3c commit 41f44fa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ $RECYCLE.BIN/
*.lnk

target/
.gradle/
build/

pom.xml.tag
pom.xml.releaseBackup
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/in/arcadelabs/labaide/LabAide.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ public class LabAide extends JavaPlugin {
@Getter
private static LabAide instance;
private static Logger logger;
private BStats metrics;
private final LegacyComponentSerializer legecySerializer = LegacyComponentSerializer.builder().hexColors().useUnusualXRepeatedCharacterHexFormat().build();
private final MiniMessage miniMessage = MiniMessage.builder().build();
private final List<Plugin> dependants = new ArrayList<>();
private BStats metrics;

public static Logger Logger() {
return logger;
Expand Down

0 comments on commit 41f44fa

Please sign in to comment.