Advertisement
jcgru

POM

Aug 10th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 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.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.                <artifactId>maven-assembly-plugin</artifactId>
  24.                <configuration>
  25.                    <archive>
  26.                        <manifest>
  27.                            <mainClass>me.yakovliam.nkdev.YakoChat.YakoChat</mainClass>
  28.                        </manifest>
  29.                    </archive>
  30.                    <descriptorRefs>
  31.                        <descriptorRef>jar-with-dependencies</descriptorRef>
  32.                    </descriptorRefs>
  33.                </configuration>
  34.                <executions>
  35.                    <execution>
  36.                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
  37.                        <phase>package</phase> <!-- bind to the packaging phase -->
  38.                        <goals>
  39.                            <goal>single</goal>
  40.                        </goals>
  41.                    </execution>
  42.                </executions>
  43.            </plugin>
  44.        </plugins>
  45.    </build>
  46.  
  47.    <repositories>
  48.        <repository>
  49.            <id>nukkitx-repo</id>
  50.            <url>http://repo.nukkitx.com/main/</url>
  51.        </repository>
  52.    </repositories>
  53.  
  54.    <dependencies>
  55.        <dependency>
  56.            <groupId>cn.nukkit</groupId>
  57.            <artifactId>nukkit</artifactId>
  58.            <version>1.0-SNAPSHOT</version>
  59.            <scope>provided</scope>
  60.        </dependency>
  61.        <!-- https://mvnrepository.com/artifact/com.typesafe/config -->
  62.        <dependency>
  63.            <groupId>com.typesafe</groupId>
  64.            <artifactId>config</artifactId>
  65.            <version>1.3.4</version>
  66.        </dependency>
  67.        <dependency>
  68.            <groupId>org.yaml</groupId>
  69.            <artifactId>snakeyaml</artifactId>
  70.            <version>1.24</version>
  71.        </dependency>
  72.        <!-- https://mvnrepository.com/artifact/me.lucko.luckperms/luckperms-api -->
  73.        <dependency>
  74.            <groupId>me.lucko.luckperms</groupId>
  75.            <artifactId>luckperms-api</artifactId>
  76.            <version>4.0</version>
  77.        </dependency>
  78.        <dependency>
  79.            <groupId>com.creeperface.nukkit.placeholderapi</groupId>
  80.            <artifactId>PlaceholderAPI</artifactId>
  81.            <version>1.0-SNAPSHOT</version>
  82.            <scope>provided</scope>
  83.        </dependency>
  84.        <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  85.        <dependency>
  86.            <groupId>org.apache.commons</groupId>
  87.            <artifactId>commons-lang3</artifactId>
  88.            <version>3.9</version>
  89.        </dependency>
  90.    </dependencies>
  91. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement