0% found this document useful (0 votes)
10 views2 pages

New Text Document

hjklhjkhjk

Uploaded by

fariskabha4
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views2 pages

New Text Document

hjklhjkhjk

Uploaded by

fariskabha4
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<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>com.hanks</groupId> <!-- Your package name -->


<artifactId>InstantRod</artifactId> <!-- Your plugin name -->
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>InstantRod</name> <!-- Plugin name -->


<description>A simple Spigot plugin using Maven</description>

<properties>
<java.version>1.8</java.version>
</properties>

<dependencies>
<!-- Spigot API dependency for version 1.8.8 -->
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.8.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.8.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<!-- Maven compiler plugin to specify Java version -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

<!-- Maven Jar Plugin to package the plugin into a JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifestEntries>
<Main-Class>com.hanks.instantrod.Main</Main-Class> <!--
Your main class path -->
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>

You might also like