Advertisement
Guest User

Untitled

a guest
Feb 14th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.34 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>dragonfire</groupId>
  8.     <artifactId>dragonfire</artifactId>
  9.     <version>1.0</version>
  10.  
  11.     <build>
  12.         <plugins>
  13.             <plugin>
  14.                 <groupId>org.apache.maven.plugins</groupId>
  15.                 <artifactId>maven-compiler-plugin</artifactId>
  16.                 <version>3.8.1</version>
  17.                 <configuration>
  18.                     <source>8</source>
  19.                     <target>8</target>
  20.                 </configuration>
  21.             </plugin>
  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.                     </execution>
  33.                 </executions>
  34.                 <configuration>
  35.                     <minimizeJar>true</minimizeJar>
  36.                     <artifactSet>
  37.                         <includes>
  38.                             <include>org.mongodb:mongo-java-driver</include>
  39.                             <include>org.mongodb.morphia:morphia</include>
  40.                             <include>redis.clients:jedis</include>
  41.                             <include>io.minio:minio</include>
  42.                         </includes>
  43.                     </artifactSet>
  44.                 </configuration>
  45.             </plugin>
  46.         </plugins>
  47.     </build>
  48.  
  49.     <repositories>
  50.         <repository>
  51.             <id>sponge-repo</id>
  52.             <name>Sponge Maven Repository</name>
  53.             <url>https://repo.spongepowered.org/maven</url>
  54.         </repository>
  55.         <repository>
  56.             <id>cloudnet-repo</id>
  57.             <url>https://cloudnetservice.eu/repositories/</url>
  58.         </repository>
  59.     </repositories>
  60.  
  61.     <dependencies>
  62.         <dependency>
  63.             <groupId>de.dytanic.cloudnet</groupId>
  64.             <artifactId>cloudnet-wrapper-jvm</artifactId>
  65.             <version>3.0.0-RELEASE</version>
  66.         </dependency>
  67.         <dependency>
  68.             <groupId>de.dytanic.cloudnet</groupId>
  69.             <artifactId>cloudnet-driver</artifactId>
  70.             <version>3.0.0-RELEASE</version>
  71.         </dependency>
  72.         <dependency>
  73.             <groupId>de.dytanic.cloudnet</groupId>
  74.             <artifactId>cloudnet-bridge</artifactId>
  75.             <version>3.0.0-RELEASE</version>
  76.         </dependency>
  77.         <dependency>
  78.             <groupId>io.minio</groupId>
  79.             <artifactId>minio</artifactId>
  80.             <version>6.0.13</version>
  81.         </dependency>
  82.         <dependency>
  83.             <groupId>commons-io</groupId>
  84.             <artifactId>commons-io</artifactId>
  85.             <version>2.6</version>
  86.         </dependency>
  87.         <dependency>
  88.             <groupId>commons-logging</groupId>
  89.             <artifactId>commons-logging</artifactId>
  90.             <version>1.2</version>
  91.         </dependency>
  92.         <dependency>
  93.             <groupId>org.mongodb.morphia</groupId>
  94.             <artifactId>morphia</artifactId>
  95.             <version>1.3.2</version>
  96.         </dependency>
  97.         <dependency>
  98.             <groupId>org.mongodb</groupId>
  99.             <artifactId>mongo-java-driver</artifactId>
  100.             <version>3.4.2</version>
  101.         </dependency>
  102.         <dependency>
  103.             <groupId>com.google.code.gson</groupId>
  104.             <artifactId>gson</artifactId>
  105.             <version>2.8.0</version>
  106.         </dependency>
  107.         <dependency>
  108.             <groupId>org.projectlombok</groupId>
  109.             <artifactId>lombok</artifactId>
  110.             <version>1.18.6</version>
  111.             <scope>provided</scope>
  112.         </dependency>
  113.         <dependency>
  114.             <groupId>org.spongepowered</groupId>
  115.             <artifactId>spongeapi</artifactId>
  116.             <version>7.1.0</version>
  117.             <type>jar</type>
  118.             <scope>provided</scope>
  119.         </dependency>
  120.     </dependencies>
  121. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement