Skip to content
This repository has been archived by the owner on Sep 18, 2022. It is now read-only.

Commit

Permalink
Version 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiKikuchi committed Oct 22, 2016
1 parent 80f22f8 commit abd7de3
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 88 deletions.
156 changes: 78 additions & 78 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,78 +1,78 @@
<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>net.kaikk.mc</groupId>
<artifactId>BetterKits</artifactId>
<version>0.9.2</version>
<licenses>
<license>
<name>GPL v3 License</name>
<url>http://www.gnu.org/licenses/</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<url>https://github.com/${developer}/${project.artifactId}/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<scm>
<url>https://github.com/${developer}/${project.artifactId}</url>
<connection>scm:git:git://github.com/${developer}/${project.artifactId}.git</connection>
<developerConnection>scm:git:[email protected]:${developer}/${project.artifactId}.git</developerConnection>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<createChecksum>true</createChecksum>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<repositories>
<repository>
<id>bukkit-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
<repository>
<id>sponge</id>
<url>http://repo.spongepowered.org/maven</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.10.2-R0.1-SNAPSHOT</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.spongepowered</groupId>
<artifactId>spongeapi</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<package>net.kaikk.mc.betterkits</package>
<developer>KaiNoMood</developer>
</properties>
</project>
<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>net.kaikk.mc</groupId>
<artifactId>BetterKits</artifactId>
<version>0.9.3</version>
<licenses>
<license>
<name>GPL v3 License</name>
<url>http://www.gnu.org/licenses/</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<url>https://github.com/${developer}/${project.artifactId}/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<scm>
<url>https://github.com/${developer}/${project.artifactId}</url>
<connection>scm:git:git://github.com/${developer}/${project.artifactId}.git</connection>
<developerConnection>scm:git:[email protected]:${developer}/${project.artifactId}.git</developerConnection>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<createChecksum>true</createChecksum>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<repositories>
<repository>
<id>bukkit-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
<repository>
<id>sponge</id>
<url>http://repo.spongepowered.org/maven</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.10.2-R0.1-SNAPSHOT</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.spongepowered</groupId>
<artifactId>spongeapi</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<package>net.kaikk.mc.betterkits</package>
<developer>KaiNoMood</developer>
</properties>
</project>
20 changes: 10 additions & 10 deletions src/main/java/net/kaikk/mc/betterkits/sponge/PluginInfo.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package net.kaikk.mc.betterkits.sponge;

public class PluginInfo {
public static final String id = "betterkits";
public static final String name = "BetterKits";
public static final String version = "0.9.2";
public static final String description = "";

private PluginInfo(){}
}
package net.kaikk.mc.betterkits.sponge;

public class PluginInfo {
public static final String id = "betterkits";
public static final String name = "BetterKits";
public static final String version = "0.9.3";
public static final String description = "";

private PluginInfo(){}
}

0 comments on commit abd7de3

Please sign in to comment.