Skip to content

Commit fa7ce8b

Browse files
committed
Add folialib dependency
1 parent 7836964 commit fa7ce8b

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,10 @@
346346
<pattern>com.google.gson</pattern>
347347
<shadedPattern>fr.xephi.authme.libs.com.google.gson</shadedPattern>
348348
</relocation>
349+
<relocation>
350+
<pattern>com.tcoded.folialib</pattern>
351+
<shadedPattern>fr.xephi.authme.libs.com.tcoded.folialib</shadedPattern>
352+
</relocation>
349353
</relocations>
350354
</configuration>
351355
</execution>
@@ -598,6 +602,11 @@
598602
<enabled>true</enabled>
599603
</snapshots>
600604
</repository>
605+
<!-- FoliaLib -->
606+
<repository>
607+
<id>devmart-other</id>
608+
<url>https://nexuslite.gcnt.net/repos/other/</url>
609+
</repository>
601610
<repository>
602611
<id>opencollab-snapshot</id>
603612
<url>https://repo.opencollab.dev/maven-snapshots/</url>
@@ -1022,6 +1031,14 @@
10221031
<optional>true</optional>
10231032
</dependency>
10241033

1034+
<!-- FoliaLib -->
1035+
<dependency>
1036+
<groupId>com.tcoded</groupId>
1037+
<artifactId>FoliaLib</artifactId>
1038+
<version>0.3.1</version>
1039+
<scope>compile</scope>
1040+
</dependency>
1041+
10251042
<dependency>
10261043
<groupId>org.postgresql</groupId>
10271044
<artifactId>postgresql</artifactId>

src/main/java/fr/xephi/authme/AuthMe.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ public void onEnable() {
176176
cleanupTask.runTaskTimerAsynchronously(this, CLEANUP_INTERVAL, CLEANUP_INTERVAL);
177177
// Do a backup on start
178178
backupService.doBackup(BackupService.BackupCause.START);
179-
180179
// Set up Metrics
181180
OnStartupTasks.sendMetrics(this, settings);
182181
if(settings.getProperty(SecuritySettings.SHOW_STARTUP_BANNER)) {

0 commit comments

Comments
 (0)