Advertisement
jcgru

Untitled

Aug 11th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.90 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.yakovliam.nkdev</groupId>
  8.     <artifactId>YakoChat</artifactId>
  9.     <version>1.1-SNAPSHOT</version>
  10.     <name>YakoChat</name>
  11.     <description>Yako's Chat Plugin</description>
  12.     <url>https://www.yakovliam.com/</url>
  13.  
  14.     <properties>
  15.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16.         <maven.compiler.source>1.8</maven.compiler.source>
  17.         <maven.compiler.target>1.8</maven.compiler.target>
  18.     </properties>
  19.  
  20.     <build>
  21.         <plugins>
  22.             <plugin>
  23.                 <groupId>org.apache.maven.plugins</groupId>
  24.                 <artifactId>maven-shade-plugin</artifactId>
  25.                 <version>3.2.1</version>
  26.                 <executions>
  27.                     <execution>
  28.                         <phase>package</phase>
  29.                         <goals>
  30.                             <goal>shade</goal>
  31.                         </goals>
  32.                         <configuration>
  33.                             <minimizeJar>true</minimizeJar>
  34.                         </configuration>
  35.                     </execution>
  36.                 </executions>
  37.             </plugin>
  38.             <plugin>
  39.                 <artifactId>maven-assembly-plugin</artifactId>
  40.                 <executions>
  41.                     <execution>
  42.                         <phase>package</phase>
  43.                         <goals>
  44.                             <goal>single</goal>
  45.                         </goals>
  46.                     </execution>
  47.                 </executions>
  48.                 <configuration>
  49.                     <descriptorRefs>
  50.                         <descriptorRef>jar-with-dependencies</descriptorRef>
  51.                     </descriptorRefs>
  52.                     <archive>
  53.                         <manifest>
  54.                             <mainClass>me.yakovliam.nkdev.YakoChat.YakoChat</mainClass>
  55.                         </manifest>
  56.                     </archive>
  57.                 </configuration>
  58.             </plugin>
  59.         </plugins>
  60.     </build>
  61.  
  62.     <repositories>
  63.         <repository>
  64.             <id>nukkitx-repo</id>
  65.             <url>http://repo.nukkitx.com/main/</url>
  66.         </repository>
  67.     </repositories>
  68.  
  69.     <dependencies>
  70.         <dependency>
  71.             <groupId>cn.nukkit</groupId>
  72.             <artifactId>nukkit</artifactId>
  73.             <version>1.0-SNAPSHOT</version>
  74.             <scope>provided</scope>
  75.         </dependency>
  76.         <!-- https://mvnrepository.com/artifact/com.typesafe/config -->
  77.         <dependency>
  78.             <groupId>com.typesafe</groupId>
  79.             <artifactId>config</artifactId>
  80.             <version>1.3.4</version>
  81.         </dependency>
  82.         <dependency>
  83.             <groupId>org.yaml</groupId>
  84.             <artifactId>snakeyaml</artifactId>
  85.             <version>1.24</version>
  86.         </dependency>
  87.         <!-- https://mvnrepository.com/artifact/me.lucko.luckperms/luckperms-api -->
  88.         <dependency>
  89.             <groupId>me.lucko.luckperms</groupId>
  90.             <artifactId>luckperms-api</artifactId>
  91.             <version>4.0</version>
  92.         </dependency>
  93.         <dependency>
  94.             <groupId>com.creeperface.nukkit.placeholderapi</groupId>
  95.             <artifactId>PlaceholderAPI</artifactId>
  96.             <version>1.0-SNAPSHOT</version>
  97.             <scope>provided</scope>
  98.         </dependency>
  99.         <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  100.         <dependency>
  101.             <groupId>org.apache.commons</groupId>
  102.             <artifactId>commons-lang3</artifactId>
  103.             <version>3.9</version>
  104.         </dependency>
  105.     </dependencies>
  106. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement