Initial commit

This commit is contained in:
Louis Vallat 2020-04-16 11:06:32 +02:00
commit 7db5b2c32c
4 changed files with 109 additions and 0 deletions

3
.gitignore vendored Normal file
View File

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

77
pom.xml Normal file
View File

@ -0,0 +1,77 @@
<?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>xyz.louis-vallat</groupId>
<artifactId>SweetDreams</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>SweetDreams</name>
<description>A plugin to enhance the sleeping system on Spigot servers.</description>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<url>louis-vallat.xyz</url>
<build>
<defaultGoal>clean package</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<repositories>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.15.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,21 @@
package xyz.louisvallat.sweetdreams;
import org.bukkit.Bukkit;
import org.bukkit.event.Listener;
import org.bukkit.plugin.java.JavaPlugin;
public final class SweetDreams extends JavaPlugin implements Listener {
@Override
public void onEnable() {
getLogger().info("Enabling plugin...");
Bukkit.getServer().getPluginManager().registerEvents(this, this);
getLogger().info("Done enabling.");
}
@Override
public void onDisable() {
getLogger().info("Disabling plugin...");
getLogger().info("Done disabling.");
}
}

View File

@ -0,0 +1,8 @@
name: SweetDreams
version: ${project.version}
main: xyz.louisvallat.sweetdreams.SweetDreams
api-version: 1.13
prefix: SweetDreams
authors: [LouisVallat]
description: A plugin to enhance the sleeping system on Spigot servers.
website: louis-vallat.xyz