Advertisement
EvilTerabite

Untitled

May 29th, 2020
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.40 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>me.evilterabite</groupId>
  8.     <artifactId>CyonGen</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.     <packaging>jar</packaging>
  11.  
  12.     <name>CyonGen</name>
  13.  
  14.     <description>custom generator for CyonMC</description>
  15.     <properties>
  16.         <java.version>1.8</java.version>
  17.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18.     </properties>
  19.  
  20.     <build>
  21.         <defaultGoal>clean package</defaultGoal>
  22.         <plugins>
  23.             <plugin>
  24.                 <groupId>org.apache.maven.plugins</groupId>
  25.                 <artifactId>maven-compiler-plugin</artifactId>
  26.                 <version>3.7.0</version>
  27.                 <configuration>
  28.                     <source>${java.version}</source>
  29.                     <target>${java.version}</target>
  30.                 </configuration>
  31.             </plugin>
  32.             <plugin>
  33.                 <groupId>org.apache.maven.plugins</groupId>
  34.                 <artifactId>maven-shade-plugin</artifactId>
  35.                 <version>3.1.0</version>
  36.                 <executions>
  37.                     <execution>
  38.                         <phase>package</phase>
  39.                         <goals>
  40.                             <goal>shade</goal>
  41.                         </goals>
  42.                         <configuration>
  43.                             <createDependencyReducedPom>false</createDependencyReducedPom>
  44.                         </configuration>
  45.                     </execution>
  46.                 </executions>
  47.             </plugin>
  48.         </plugins>
  49.         <resources>
  50.             <resource>
  51.                 <directory>src/main/resources</directory>
  52.                 <filtering>true</filtering>
  53.             </resource>
  54.         </resources>
  55.     </build>
  56.  
  57.     <repositories>
  58.         <repository>
  59.             <id>spigotmc-repo</id>
  60.             <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  61.         </repository>
  62.         <repository>
  63.             <id>sonatype</id>
  64.             <url>https://oss.sonatype.org/content/groups/public/</url>
  65.         </repository>
  66.         <repository>
  67.             <id>jitpack.io</id>
  68.             <url>https://jitpack.io</url>
  69.         </repository>
  70.     </repositories>
  71.  
  72.     <dependencies>
  73.         <dependency>
  74.             <groupId>org.spigotmc</groupId>
  75.             <artifactId>spigot-api</artifactId>
  76.             <version>1.15.2-R0.1-SNAPSHOT</version>
  77.             <scope>provided</scope>
  78.         </dependency>
  79.         <dependency>
  80.             <groupId>org.ipvp</groupId>
  81.             <artifactId>canvas</artifactId>
  82.             <version>1.5.0-SNAPSHOT</version>
  83.             <scope>compile</scope>
  84.         </dependency>
  85.         <dependency>
  86.             <groupId>net.luckperms</groupId>
  87.             <artifactId>api</artifactId>
  88.             <version>5.0</version>
  89.             <scope>provided</scope>
  90.         </dependency>
  91.         <dependency>
  92.             <groupId>com.github.MilkBowl</groupId>
  93.             <artifactId>VaultAPI</artifactId>
  94.             <version>1.7</version>
  95.             <scope>provided</scope>
  96.         </dependency>
  97.     </dependencies>
  98. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement