Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildTools committed Mar 13, 2019
1 parent 5e2eb34 commit 58f99ab
Show file tree
Hide file tree
Showing 5 changed files with 1,352 additions and 0 deletions.
8 changes: 8 additions & 0 deletions plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: LocaleLib
main: me.pikamug.localelib.LocaleLib
version: 1.0
api-version: 1.13
description: Show translated item/entity/etc. names in client's language
website: https://www.spigotmc.org/resources/quests.3711/
dev-url: https://github.com/PikaMug/LocaleLib
author: PikaMug
62 changes: 62 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<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>me.pikamug.localelib</groupId>
<artifactId>LocaleLib</artifactId>
<version>1.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<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.13.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>

<resources>
<resource>
<targetPath>.</targetPath>
<directory>${basedir}/LocaleLib</directory>
<filtering>true</filtering>
<includes>
<include>plugin.yml</include>
</includes>
</resource>
<resource>
<targetPath>.</targetPath>
<directory>${basedir}/</directory>
<filtering>false</filtering>
<includes>
<include>LICENSE</include>
<include>README.md</include>
</includes>
</resource>
</resources>
</build>
</project>
Loading

0 comments on commit 58f99ab

Please sign in to comment.