Advertisement
notjacob

pom.xml

Jan 16th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.89 KB | None | 0 0
  1. <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">
  2.   <modelVersion>4.0.0</modelVersion>
  3.   <groupId>SysCore1.8</groupId>
  4.   <artifactId>SysCore1.8</artifactId>
  5.   <version>1.0</version>
  6.   <name>SysCore</name>
  7.   <dependencies>
  8.      <dependency>
  9.            <groupId>org.spigotmc</groupId>
  10.            <artifactId>spigot-api</artifactId>
  11.            <version>1.8.8-R0.1-SNAPSHOT</version>
  12.            <scope>provided</scope>
  13.     </dependency>
  14.     <dependency>
  15.             <groupId>org.bukkit</groupId>
  16.             <artifactId>craftbukkit</artifactId>
  17.             <version>1.8.8-R0.1-SNAPSHOT</version>
  18.             <scope>provided</scope>
  19.     </dependency>
  20.   </dependencies>
  21.   <repositories>
  22.     <repository>
  23.             <id>spigot-repo</id>
  24.             <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  25.     </repository>
  26.     <repository>
  27.         <id>bukkit-repo</id>
  28.         <url>http://repo.bukkit.org/content/groups/public/</url>
  29.     </repository>
  30.   </repositories>
  31.   <build>
  32.     <finalName>${project.artifactId}-${project.version}${buildNo}</finalName>
  33.        <sourceDirectory>src/main/java</sourceDirectory>
  34.        <resources>
  35.            <resource>
  36.                <targetPath>.</targetPath>
  37.                <filtering>true</filtering>
  38.                <directory>${basedir}/src/main/resources/</directory>
  39.                <includes>
  40.                    <include>plugin.yml</include>
  41.                </includes>
  42.            </resource>
  43.        </resources>  
  44.     <plugins>
  45.       <plugin>
  46.         <artifactId>maven-compiler-plugin</artifactId>
  47.         <version>3.8.0</version>
  48.         <configuration>
  49.           <source>1.8</source>
  50.           <target>1.8</target>
  51.         </configuration>
  52.       </plugin>
  53.     </plugins>
  54.   </build>
  55.  
  56. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement