Advertisement
a333c

ex_pom.xml

Nov 8th, 2017
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.52 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.minecraftuser</groupId>
  6.     <artifactId>test_plugin</artifactId>
  7.     <version>0.1-SNAPSHOT</version>
  8.     <packaging>jar</packaging>
  9.     <properties>
  10.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11.         <maven.compiler.source>1.8</maven.compiler.source>
  12.         <maven.compiler.target>1.8</maven.compiler.target>
  13.     </properties>
  14.     <repositories>
  15.         <repository>
  16.             <id>spigot-repo</id>
  17.             <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  18.         </repository>
  19.     </repositories>
  20.     <dependencies>
  21.         <dependency>
  22.             <groupId>org.spigotmc</groupId>
  23.             <artifactId>spigot-api</artifactId>
  24.             <version>1.9.4-R0.1-SNAPSHOT</version> <!-- ここはかいはつするSpigotのバージョンによって変える -->
  25.             <scope>provided</scope>
  26.         </dependency>
  27.     </dependencies>
  28.     <build>
  29.         <resources>
  30.             <resource>
  31.                 <directory>src/main/java</directory>
  32.                 <includes>
  33.                     <include>plugin.yml</include>
  34.                 </includes>
  35.             </resource>
  36.         </resources>
  37.     </build>
  38. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement