Advertisement
AqUpd

Untitled

Nov 7th, 2021
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.73 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>com.tofa</groupId>
  5.     <artifactId>discordwl</artifactId>
  6.     <version>1.01</version>
  7.     <packaging>jar</packaging>
  8.     <name>DiscordWhitelistBot</name>
  9.  
  10.     <repositories>
  11.         <repository>
  12.             <id>dv8tion</id>
  13.             <name>m2-dv8tion</name>
  14.             <url>https://m2.dv8tion.net/releases</url>
  15.         </repository>
  16.         <repository>
  17.             <id>spigot-repo</id>
  18.             <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  19.         </repository>
  20.     </repositories>
  21.  
  22.     <description>Advanced Whitelist Discord bot for ur server!</description>
  23.     <properties>
  24.         <maven.compiler.target>16</maven.compiler.target>
  25.         <maven.compiler.source>16</maven.compiler.source>
  26.     </properties>
  27.  
  28.     <dependencies>
  29.         <dependency>
  30.             <groupId>net.dv8tion</groupId>
  31.             <artifactId>JDA</artifactId>
  32.             <version>v4.3.0_340</version>
  33.         </dependency>
  34.         <dependency>
  35.            <groupId>org.spigotmc</groupId>
  36.            <artifactId>spigot-api</artifactId>
  37.            <version>1.17.1-R0.1-SNAPSHOT</version>
  38.            <scope>provided</scope>
  39.     </dependency>
  40.     </dependencies>
  41.  
  42.     <build>
  43.         <plugins>
  44.             <plugin>
  45.                 <groupId>org.apache.maven.plugins</groupId>
  46.                 <artifactId>maven-compiler-plugin</artifactId>
  47.                 <version>3.8.1</version>
  48.             </plugin>
  49.         </plugins>
  50.     </build>
  51. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement