Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.12 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>net.lordofthecraft</groupId>
  8.     <artifactId>enchantarcane</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.     <packaging>jar</packaging>
  11.  
  12.     <name>EnchantArcane</name>
  13.  
  14.     <properties>
  15.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16.     </properties>
  17.  
  18.     <build>
  19.         <defaultGoal>clean package</defaultGoal>
  20.         <finalName>${project.name}</finalName>
  21.         <plugins>
  22.             <plugin>
  23.                 <groupId>org.apache.maven.plugins</groupId>
  24.                 <artifactId>maven-compiler-plugin</artifactId>
  25.                 <version>3.7.0</version>
  26.                 <configuration>
  27.                     <source>1.8</source>
  28.                     <target>1.8</target>
  29.                 </configuration>
  30.             </plugin>
  31.         </plugins>
  32.         <resources>
  33.             <resource>
  34.                 <directory>src/main/resources</directory>
  35.                 <filtering>true</filtering>
  36.             </resource>
  37.         </resources>
  38.     </build>
  39.  
  40.     <repositories>
  41.         <repository>
  42.             <id>spigotmc-repo</id>
  43.             <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  44.         </repository>
  45.         <repository>
  46.             <id>lotc-release</id>
  47.             <url>https://repo.lordofthecraft.net/artifactory/lotc-releases/</url>
  48.         </repository>
  49.     </repositories>
  50.  
  51.     <dependencies>
  52.         <dependency>
  53.             <groupId>org.spigotmc</groupId>
  54.             <artifactId>spigot-api</artifactId>
  55.             <version>1.13.2-R0.1-SNAPSHOT</version>
  56.             <scope>provided</scope>
  57.         </dependency>
  58.         <dependency>
  59.             <groupId>net.lordofthecraft.arche</groupId>
  60.             <artifactId>ArcheCore</artifactId>
  61.             <version>3.6</version>
  62.         </dependency>
  63.     </dependencies>
  64. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement