Archived
0

Initial commit.

This commit is contained in:
Wani4ka
2019-01-30 01:04:30 +03:00
commit e708519b57
4 changed files with 42 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.idea/
*.iml
target/

25
pom.xml Normal file
View File

@@ -0,0 +1,25 @@
<?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>ru.prisonlife</groupId>
<artifactId>PrisonAPI</artifactId>
<version>0.0.1</version>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.12-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,10 @@
package ru.prisonlife.PrisonAPI;
import org.bukkit.plugin.java.JavaPlugin;
public class PrisonAPI extends JavaPlugin {
@Override
public void onEnable() {
getLogger().info("Enabled");
}
}

View File

@@ -0,0 +1,4 @@
name: PrisonAPI
version: 0.0.1
authors: [Overlord_S, Prot_CN, Wani4ka]
main: ru.prisonlife.PrisonAPI.PrisonAPI