mirror of
https://github.com/sekwah41/Advanced-Portals.git
synced 2024-11-02 17:09:51 +01:00
44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
<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.sekwah.advancedportals</groupId>
|
|
<artifactId>Advanced-Portals</artifactId>
|
|
<build>
|
|
<sourceDirectory>${basedir}/core/</sourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>${basedir}/Resources</directory>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
<repositories>
|
|
<!-- Only needed for spigot -->
|
|
<!--<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>-->
|
|
</repositories>
|
|
<version>1.0.0-snapshot</version>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
</properties>
|
|
<dependencies>
|
|
<!-- Only needed for spigot -->
|
|
<!--<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.12.1-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>-->
|
|
<!-- spigot's buildtools automatically places it in maven's repository after building it -->
|
|
<!-- Craftbukkit contains the bukkit code. But as the majority uses it uses bukkit
|
|
it stops the need to build to edit at least -->
|
|
<!--<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
<version>1.10.2-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>-->
|
|
</dependencies>
|
|
</project> |