Advertisement
MrSuricate

pom.xml

Jul 6th, 2021
1,219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.56 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>fr.velris</groupId>
  8.     <artifactId>skycore</artifactId>
  9.     <version>1.0</version>
  10.     <packaging>jar</packaging>
  11.  
  12.     <name>Skycore</name>
  13.  
  14.     <description>Plugin Core pour Zekaria Skyblock</description>
  15.     <properties>
  16.         <java.version>1.8</java.version>
  17.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18.     </properties>
  19.     <url>https://zekaria.fr</url>
  20.  
  21.     <build>
  22.         <plugins>
  23.             <plugin>
  24.                 <groupId>org.apache.maven.plugins</groupId>
  25.                 <artifactId>maven-compiler-plugin</artifactId>
  26.                 <version>3.8.1</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.2.4</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.             <plugin>
  49.                 <artifactId>maven-shade-plugin</artifactId>
  50.                 <version>3.2.4</version>
  51.                 <configuration>
  52.                     <relocations>
  53.                         <relocation>
  54.                             <pattern>de.themoep.minedown</pattern>
  55.                             <shadedPattern>your.package.path.libraries.minedown</shadedPattern>
  56.                         </relocation>
  57.                     </relocations>
  58.                 </configuration>
  59.                 <executions>
  60.                     <execution>
  61.                         <phase>package</phase>
  62.                         <goals>
  63.                             <goal>shade</goal>
  64.                         </goals>
  65.                     </execution>
  66.                 </executions>
  67.             </plugin>
  68.         </plugins>
  69.         <resources>
  70.             <resource>
  71.                 <directory>src/main/resources</directory>
  72.                 <filtering>true</filtering>
  73.             </resource>
  74.         </resources>
  75.     </build>
  76.  
  77.     <repositories>
  78.         <repository>
  79.             <id>papermc-repo</id>
  80.             <url>https://papermc.io/repo/repository/maven-public/</url>
  81.         </repository>
  82.         <repository>
  83.             <id>sonatype</id>
  84.             <url>https://oss.sonatype.org/content/groups/public/</url>
  85.         </repository>
  86.         <repository>
  87.             <id>jitpack.io</id>
  88.             <url>https://jitpack.io</url>
  89.         </repository>
  90.         <repository>
  91.             <id>bg-repo</id>
  92.             <url>https://repo.bg-software.com/repository/api/</url>
  93.         </repository>
  94.         <repository>
  95.             <id>placeholderapi</id>
  96.             <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  97.         </repository>
  98.         <repository>
  99.             <id>codemc-repo</id>
  100.             <url>https://repo.codemc.org/repository/maven-public/</url>
  101.             <layout>default</layout>
  102.         </repository>
  103.         <repository>
  104.             <id>minebench-repo</id>
  105.             <url>https://repo.minebench.de/</url>
  106.         </repository>
  107.     </repositories>
  108.  
  109.     <dependencies>
  110.         <dependency>
  111.             <groupId>com.destroystokyo.paper</groupId>
  112.             <artifactId>paper-api</artifactId>
  113.             <version>1.16.5-R0.1-SNAPSHOT</version>
  114.             <scope>provided</scope>
  115.         </dependency>
  116.         <dependency>
  117.             <groupId>net.luckperms</groupId>
  118.             <artifactId>api</artifactId>
  119.             <version>5.3</version>
  120.             <scope>provided</scope>
  121.         </dependency>
  122.         <dependency>
  123.             <groupId>com.github.MilkBowl</groupId>
  124.             <artifactId>VaultAPI</artifactId>
  125.             <version>1.7</version>
  126.             <scope>provided</scope>
  127.         </dependency>
  128.         <dependency>
  129.             <groupId>com.bgsoftware</groupId>
  130.             <artifactId>WildStackerAPI</artifactId>
  131.             <version>latest</version>
  132.         </dependency>
  133.         <dependency>
  134.             <groupId>com.bgsoftware</groupId>
  135.             <artifactId>SuperiorSkyblockAPI</artifactId>
  136.             <version>latest</version>
  137.         </dependency>
  138.         <dependency>
  139.             <groupId>me.clip</groupId>
  140.             <artifactId>placeholderapi</artifactId>
  141.             <version>2.10.9</version>
  142.             <scope>provided</scope>
  143.         </dependency>
  144.         <dependency>
  145.             <groupId>de.tr7zw</groupId>
  146.             <artifactId>item-nbt-api-plugin</artifactId>
  147.             <version>2.8.0</version>
  148.         </dependency>
  149.         <dependency>
  150.             <groupId>de.themoep</groupId>
  151.             <artifactId>minedown-adventure</artifactId>
  152.             <version>1.7.1-SNAPSHOT</version>
  153.             <scope>compile</scope>
  154.         </dependency>
  155.     </dependencies>
  156. </project>
  157.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement