Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.14 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.stubeapi</groupId>
  8.     <artifactId>StubeAPI</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <repositories>
  12.         <repository>
  13.             <id>spigot-repo</id>
  14.             <url>https://cloudnetservice.eu/repositories/</url>
  15.         </repository>
  16.         <repository>
  17.             <id>bungeecord-repo</id>
  18.             <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  19.         </repository>
  20.     </repositories>
  21.  
  22.     <dependencies>
  23.         <dependency>
  24.             <groupId>org.spigotmc</groupId>
  25.             <artifactId>spigot</artifactId>
  26.             <version>1.8.8</version>
  27.             <scope>provided</scope>
  28.         </dependency>
  29.  
  30.         <dependency>
  31.             <groupId>org.projectlombok</groupId>
  32.             <artifactId>lombok</artifactId>
  33.             <version>1.18.0</version>
  34.             <scope>provided</scope>
  35.         </dependency>
  36.  
  37.         <dependency>
  38.             <groupId>de.dytanic.cloudnet</groupId>
  39.             <artifactId>cloudnet-api-bridge</artifactId>
  40.             <version>2.1.12</version>
  41.             <scope>provided</scope>
  42.         </dependency>
  43.  
  44.         <dependency>
  45.             <groupId>org.mongodb</groupId>
  46.             <artifactId>mongodb-driver-async</artifactId>
  47.             <version>LATEST</version>
  48.             <scope>compile</scope>
  49.         </dependency>
  50.  
  51.         <dependency>
  52.             <groupId>net.md-5</groupId>
  53.             <artifactId>bungeecord-api</artifactId>
  54.             <version>1.12-SNAPSHOT</version>
  55.             <type>jar</type>
  56.             <scope>provided</scope>
  57.         </dependency>
  58.     </dependencies>
  59.  
  60.     <properties>
  61.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  62.     </properties>
  63.  
  64.     <build>
  65.         <finalName>StubeAPI</finalName>
  66.         <resources>
  67.             <resource>
  68.                 <directory>src/main/resources</directory>
  69.                 <filtering>true</filtering>
  70.             </resource>
  71.         </resources>
  72.         <plugins>
  73.             <plugin>
  74.                 <groupId>org.apache.maven.plugins</groupId>
  75.                 <artifactId>maven-shade-plugin</artifactId>
  76.                 <version>3.2.0</version>
  77.                 <executions>
  78.                     <execution>
  79.                         <phase>package</phase>
  80.                         <goals>
  81.                             <goal>shade</goal>
  82.                         </goals>
  83.                     </execution>
  84.                 </executions>
  85.             </plugin>
  86.             <plugin>
  87.                 <groupId>org.apache.maven.plugins</groupId>
  88.                 <artifactId>maven-compiler-plugin</artifactId>
  89.                 <configuration>
  90.                     <source>8</source>
  91.                     <target>8</target>
  92.                 </configuration>
  93.             </plugin>
  94.         </plugins>
  95.     </build>
  96. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement