Compare commits

..

No commits in common. "5549e0a3d522b5f6c2ac4967c713f01bb43237c1" and "7aa199723077a35bf8576e0efc74be1cf73ce4b7" have entirely different histories.

3 changed files with 0 additions and 56 deletions

31
pom.xml
View File

@ -1,31 +0,0 @@
<?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"
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>
<groupId>org.example</groupId>
<artifactId>AuRechargeData</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<repositories>
<repository>
<id>public-rpg</id>
<url>https://repo.aurora-pixels.com/repository/public-rpg/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.12.2</version>
</dependency>
</dependencies>
</project>

View File

@ -1,12 +0,0 @@
package com.io.yaohun.aurechargedata;
import org.bukkit.plugin.java.JavaPlugin;
public class Main extends JavaPlugin {
private Main main;
@Override
public void onEnable() {
main = this;
}
}

View File

@ -1,13 +0,0 @@
package com.io.yaohun.aurechargedata.util;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.player.PlayerJoinEvent;
public class dsadas {
@EventHandler
public void onjoin(PlayerJoinEvent e){
}
}