Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.16 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.dimasik.api</groupId>
  8.     <artifactId>dust-api</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <repositories>
  12.         <repository>
  13.             <id>spigot-repo</id>
  14.             <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  15.         </repository>
  16.     </repositories>
  17.  
  18.     <properties>
  19.         <maven.compiler.source>1.8</maven.compiler.source>
  20.         <maven.compiler.target>1.8</maven.compiler.target>
  21.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22.         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  23.     </properties>
  24.  
  25.  
  26.     <dependencies>
  27.         <dependency>
  28.             <groupId>org.projectlombok</groupId>
  29.             <artifactId>lombok</artifactId>
  30.             <version>1.18.10</version>
  31.             <scope>provided</scope>
  32.         </dependency>
  33.         <dependency>
  34.             <groupId>com.zaxxer</groupId>
  35.             <artifactId>HikariCP</artifactId>
  36.             <version>3.4.1</version>
  37.             <scope>compile</scope>
  38.         </dependency>
  39.         <dependency>
  40.             <groupId>org.spigotmc</groupId>
  41.             <artifactId>spigot-api</artifactId>
  42.             <version>1.11.2-R0.1-SNAPSHOT</version>
  43.             <scope>provided</scope>
  44.         </dependency>
  45.         <dependency>
  46.             <groupId>net.md-5</groupId>
  47.             <artifactId>bungeecord-chat</artifactId>
  48.             <version>1.10-SNAPSHOT</version>
  49.             <scope>provided</scope>
  50.         </dependency>
  51.         <dependency>
  52.             <groupId>org.spigotmc</groupId>
  53.             <artifactId>plugin-annotations</artifactId>
  54.             <version>1.2.2-SNAPSHOT</version>
  55.             <scope>provided</scope>
  56.         </dependency>
  57.     </dependencies>
  58.  
  59.     <packaging>jar</packaging>
  60.     <name>Dust Api for plugin developers</name>
  61.     <developers>
  62.         <developer>
  63.             <id>dimasik</id>
  64.             <name>Dmitry S.</name>
  65.         </developer>
  66.     </developers>
  67.  
  68.     <build>
  69.         <defaultGoal>verify install</defaultGoal>
  70.  
  71.         <pluginManagement>
  72.             <plugins>
  73.                 <plugin>
  74.                     <groupId>org.apache.maven.plugins</groupId>
  75.                     <artifactId>maven-jar-plugin</artifactId>
  76.                     <version>3.1.0</version>
  77.                 </plugin>
  78.                 <plugin>
  79.                     <groupId>org.apache.maven.plugins</groupId>
  80.                     <artifactId>maven-source-plugin</artifactId>
  81.                     <version>3.0.1</version>
  82.                     <executions>
  83.                         <execution>
  84.                             <id>attach-sources</id>
  85.                             <phase>verify</phase>
  86.                             <goals>
  87.                                 <goal>jar</goal>
  88.                             </goals>
  89.                         </execution>
  90.                     </executions>
  91.                 </plugin>
  92.                 <plugin>
  93.                     <groupId>org.apache.maven.plugins</groupId>
  94.                     <artifactId>maven-shade-plugin</artifactId>
  95.                     <version>3.2.0</version>
  96.                     <executions>
  97.                         <execution>
  98.                             <phase>package</phase>
  99.                             <goals>
  100.                                 <goal>shade</goal>
  101.                             </goals>
  102.                         </execution>
  103.                     </executions>
  104.                 </plugin>
  105.                 <plugin>
  106.                     <groupId>org.apache.maven.plugins</groupId>
  107.                     <artifactId>maven-compiler-plugin</artifactId>
  108.                     <configuration>
  109.                         <source>8</source>
  110.                         <target>8</target>
  111.                     </configuration>
  112.                 </plugin>
  113.             </plugins>
  114.         </pluginManagement>
  115.     </build>
  116. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement