Advertisement
a333c

pom.xml

Nov 3rd, 2017
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.14 KB | None | 0 0
  1. <!-- pom.xml -->
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <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">
  4.     <modelVersion>4.0.0</modelVersion>
  5.     <groupId>jp.hikahikaru17.dev</groupId>
  6.     <artifactId>nine_cbs</artifactId>
  7.     <version>1.8.2</version>
  8.     <packaging>jar</packaging>
  9.     <properties>
  10.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11.         <maven.compiler.source>1.7</maven.compiler.source>
  12.         <maven.compiler.target>1.7</maven.compiler.target>
  13.     </properties>
  14.    
  15.     <repositories>
  16.         <repository>
  17.             <id>spigot-repo</id>
  18.             <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  19.         </repository>
  20.         <repository>
  21.             <id>sk89q-repo</id>
  22.             <url>http://maven.sk89q.com/repo/</url>
  23.         </repository>
  24.  
  25.     </repositories>
  26.     <build>
  27.         <resources>
  28.             <resource>
  29.                 <directory>src/main/java</directory>
  30.                 <includes>
  31.                     <include>plugin.yml</include>
  32.                 </includes>
  33.             </resource>
  34.         </resources>
  35.  
  36.     </build>
  37.     <name>9鯖CB</name>
  38.     <dependencies>
  39.         <dependency>
  40.             <groupId>org.bukkit</groupId>
  41.             <artifactId>bukkit</artifactId>
  42.             <version>1.12-R0.1-SNAPSHOT</version>
  43.             <type>jar</type>
  44.         </dependency>
  45.         <dependency>
  46.             <groupId>org.spigotmc</groupId>
  47.             <artifactId>spigot</artifactId>
  48.             <version>1.12-R0.1-SNAPSHOT</version>
  49.             <type>jar</type>
  50.         </dependency>
  51.         <dependency>
  52.             <groupId>com.sk89q.worldguard</groupId>
  53.             <artifactId>worldguard-legacy</artifactId>
  54.             <version>6.2</version>
  55.         </dependency>
  56.         <dependency>
  57.             <groupId>net.coreprotect</groupId>
  58.             <artifactId>coreprotect</artifactId>
  59.             <version>2.14.2</version>
  60.         </dependency>
  61.     </dependencies>
  62. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement