Advertisement
Guest User

ChatPlugin - pom.xml

a guest
Mar 31st, 2020
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.55 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>eu.jailbreaker</groupId>
  8.     <artifactId>ChatPlugin</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <repositories>
  12.         <repository>
  13.             <id>cloudnet-repo</id>
  14.             <url>https://cloudnetservice.eu/repositories</url>
  15.         </repository>
  16.     </repositories>
  17.  
  18.     <dependencies>
  19.         <dependency>
  20.             <groupId>org.spigotmc</groupId>
  21.             <artifactId>spigot</artifactId>
  22.             <version>1.8.8</version>
  23.             <scope>provided</scope>
  24.         </dependency>
  25.  
  26.         <dependency>
  27.             <groupId>org.projectlombok</groupId>
  28.             <artifactId>lombok</artifactId>
  29.             <version>1.18.0</version>
  30.             <scope>provided</scope>
  31.         </dependency>
  32.  
  33.         <dependency>
  34.             <groupId>de.dytanic.cloudnet</groupId>
  35.             <artifactId>cloudnet-api-bridge</artifactId>
  36.             <version>2.1.12</version>
  37.             <scope>provided</scope>
  38.         </dependency>
  39.     </dependencies>
  40.  
  41.     <properties>
  42.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  43.     </properties>
  44.  
  45.     <build>
  46.         <finalName>ChatPlugin</finalName>
  47.         <resources>
  48.             <resource>
  49.                 <directory>src/main/resources</directory>
  50.                 <filtering>true</filtering>
  51.             </resource>
  52.         </resources>
  53.  
  54.         <plugins>
  55.             <plugin>
  56.                 <groupId>org.apache.maven.plugins</groupId>
  57.                 <artifactId>maven-shade-plugin</artifactId>
  58.                 <version>3.2.2</version>
  59.                 <executions>
  60.                     <execution>
  61.                         <phase>package</phase>
  62.                         <goals>
  63.                             <goal>shade</goal>
  64.                         </goals>
  65.                     </execution>
  66.                 </executions>
  67.             </plugin>
  68.  
  69.             <plugin>
  70.                 <groupId>org.apache.maven.plugins</groupId>
  71.                 <artifactId>maven-compiler-plugin</artifactId>
  72.                 <version>3.8.1</version>
  73.                 <configuration>
  74.                     <source>8</source>
  75.                     <target>8</target>
  76.                 </configuration>
  77.             </plugin>
  78.         </plugins>
  79.     </build>
  80. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement