Advertisement
GuerreroCraft61

Untitled

Jul 27th, 2020
1,330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 7.44 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.     <groupId>CustomTnT</groupId>
  6.     <artifactId>CustomTnT</artifactId>
  7.     <version>0.7.0</version>
  8.  
  9.     <name>CustomTnT</name>
  10.     <description>Plugin para el servidor de EspañolTNT</description>
  11.     <url>https://discord.gg/espanoltnt</url>
  12.  
  13.  
  14.     <developers>
  15.         <developer>
  16.             <name>GuerreroCraft61</name>
  17.             <url>https://discord.gg/edrpCvf</url>
  18.         </developer>
  19.     </developers>
  20.  
  21.     <properties>
  22.         <maven.compiler.target>1.8</maven.compiler.target>
  23.         <maven.compiler.source>1.8</maven.compiler.source>
  24.         <author>GuerreroCraft61</author>
  25.         <mainClass>guerrero61.customtnt.Main</mainClass>
  26.         <api-version>1.13</api-version>
  27.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  28.     </properties>
  29.  
  30.     <repositories>
  31.         <repository>
  32.             <id>spigotmc-repo</id>
  33.             <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  34.         </repository>
  35.         <repository>
  36.             <id>papermc-repo</id>
  37.             <url>https://papermc.io/repo/repository/maven-public/</url>
  38.         </repository>
  39.         <repository>
  40.             <id>jcenter</id>
  41.             <name>jcenter-bintray</name>
  42.             <url>https://jcenter.bintray.com</url>
  43.         </repository>
  44.         <repository>
  45.             <id>jitpack.io</id>
  46.             <url>https://jitpack.io</url>
  47.         </repository>
  48.         <repository>
  49.             <id>cubekrowd-repo</id>
  50.             <url>https://mavenrepo.cubekrowd.net/artifactory/repo/</url>
  51.         </repository>
  52.         <repository>
  53.             <id>codemc-snapshots</id>
  54.             <url>https://repo.codemc.org/repository/maven-snapshots/</url>
  55.         </repository>
  56.         <repository>
  57.             <id>placeholderapi</id>
  58.             <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  59.         </repository>
  60.     </repositories>
  61.  
  62.     <dependencies>
  63.         <!--Paperclip API -->
  64.         <dependency>
  65.             <groupId>com.destroystokyo.paper</groupId>
  66.             <artifactId>paper-api</artifactId>
  67.             <version>1.16.1-R0.1-SNAPSHOT</version>
  68.             <scope>provided</scope>
  69.         </dependency>
  70.         <!--Spigot API and NMS -->
  71.         <dependency>
  72.             <groupId>org.spigotmc</groupId>
  73.             <artifactId>spigot</artifactId>
  74.             <version>1.16.1-R0.1-SNAPSHOT</version>
  75.             <scope>provided</scope>
  76.         </dependency>
  77.         <!--Java Discord API -->
  78.         <dependency>
  79.             <groupId>net.dv8tion</groupId>
  80.             <artifactId>JDA</artifactId>
  81.             <version>4.2.0_177</version>
  82.             <scope>compile</scope>
  83.         </dependency>
  84.         <!-- Simple Particle API -->
  85.         <dependency>
  86.             <groupId>com.github.GuerreroCraft61</groupId>
  87.             <artifactId>SimpleParticleAPI</artifactId>
  88.             <version>1.0.9</version>
  89.             <scope>provided</scope>
  90.         </dependency>
  91.         <!--Vault API -->
  92.         <dependency>
  93.             <groupId>com.github.MilkBowl</groupId>
  94.             <artifactId>VaultAPI</artifactId>
  95.             <version>1.7</version>
  96.             <scope>provided</scope>
  97.         </dependency>
  98.         <!--LuckPerms API -->
  99.         <dependency>
  100.             <groupId>net.luckperms</groupId>
  101.             <artifactId>api</artifactId>
  102.             <version>5.1</version>
  103.             <scope>provided</scope>
  104.         </dependency>
  105.         <!-- MMOLib -->
  106.         <dependency>
  107.             <groupId>net.mmogroup.mmolib</groupId>
  108.             <artifactId>MMOLib</artifactId>
  109.             <version>1.2.4</version>
  110.             <scope>system</scope>
  111.             <systemPath>${project.basedir}/libraries/MMOLib-1.2.4.jar</systemPath>
  112.         </dependency>
  113.         <!-- MMOItems -->
  114.         <dependency>
  115.             <groupId>net.Indyuce.mmoitems</groupId>
  116.             <artifactId>MMOItems</artifactId>
  117.             <version>5.5.1</version>
  118.             <scope>system</scope>
  119.             <systemPath>${project.basedir}/libraries/MMOItems-5.5.1.jar</systemPath>
  120.         </dependency>
  121.         <!-- SuperVanish -->
  122.         <dependency>
  123.             <groupId>de.myzelyam</groupId>
  124.             <artifactId>SuperVanish</artifactId>
  125.             <version>6.1.3</version>
  126.             <scope>provided</scope>
  127.         </dependency>
  128.         <!-- SkinsRestorer API -->
  129.         <dependency>
  130.             <groupId>com</groupId>
  131.             <artifactId>skinsrestorer</artifactId>
  132.             <version>13.8.0-SNAPSHOT</version>
  133.             <scope>provided</scope>
  134.         </dependency>
  135.         <!-- Placeholder API -->
  136.         <dependency>
  137.             <groupId>me.clip</groupId>
  138.             <artifactId>placeholderapi</artifactId>
  139.             <version>2.10.6</version>
  140.             <scope>provided</scope>
  141.         </dependency>
  142.     </dependencies>
  143.  
  144.     <profiles>
  145.         <profile>
  146.             <id>ServerDir</id>
  147.             <build>
  148.                 <directory>F:\Users\GuerreroCraft61\Desktop\TnTServer\CustomTnT</directory>
  149.             </build>
  150.         </profile>
  151.     </profiles>
  152.  
  153.     <build>
  154.         <sourceDirectory>src</sourceDirectory>
  155.         <defaultGoal>clean install</defaultGoal>
  156.         <resources>
  157.             <resource>
  158.                 <directory>resources</directory>
  159.                 <!-- Keeping filtering at true here reduces plugin.yml redundancy! -->
  160.                 <filtering>true</filtering>
  161.                 <includes>
  162.                     <include>plugin.yml</include>
  163.                 </includes>
  164.             </resource>
  165.             <resource>
  166.                 <directory>resources</directory>
  167.                 <!-- Keep filtering at false for other resources to prevent bad magic -->
  168.                 <filtering>false</filtering>
  169.                 <excludes>
  170.                     <exclude>**/*.java</exclude>
  171.                     <exclude>plugin.yml</exclude>
  172.                 </excludes>
  173.             </resource>
  174.         </resources>
  175.         <plugins>
  176.             <plugin>
  177.                 <artifactId>maven-compiler-plugin</artifactId>
  178.                 <version>3.8.1</version>
  179.                 <configuration>
  180.                     <source>1.8</source>
  181.                     <target>1.8</target>
  182.                     <encoding>UTF-8</encoding>
  183.                 </configuration>
  184.             </plugin>
  185.             <plugin>
  186.                 <groupId>org.apache.maven.plugins</groupId>
  187.                 <artifactId>maven-shade-plugin</artifactId>
  188.                 <version>3.2.1</version>
  189.                 <executions>
  190.                     <execution>
  191.                         <phase>package</phase>
  192.                         <goals>
  193.                             <goal>shade</goal>
  194.                         </goals>
  195.                     </execution>
  196.                 </executions>
  197.             </plugin>
  198.             <plugin>
  199.                 <groupId>org.apache.maven.plugins</groupId>
  200.                 <artifactId>maven-jar-plugin</artifactId>
  201.                 <version>3.2.0</version>
  202.                 <configuration>
  203.                     <outputDirectory>F:\Users\GuerreroCraft61\Desktop\TnTServer\Server\plugins</outputDirectory>
  204.                 </configuration>
  205.             </plugin>
  206.         </plugins>
  207.     </build>
  208. </project>
  209.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement