AqUpd

Untitled

Nov 7th, 2021 (edited)
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.81 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>1.8</maven.compiler.target>
  25.         <maven.compiler.source>1.8</maven.compiler.source>
  26.     </properties>
  27.  
  28.     <dependencies>
  29.         <dependency>
  30.             <groupId>net.dv8tion</groupId>
  31.             <artifactId>JDA</artifactId>
  32.             <version>4.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.     <build>
  42.         <defaultGoal>clean package</defaultGoal>
  43.         <plugins>
  44.             <plugin>
  45.                 <groupId>org.apache.maven.plugins</groupId>
  46.                 <artifactId>maven-shade-plugin</artifactId>
  47.                 <version>3.1.0</version>
  48.                 <executions>
  49.                     <execution>
  50.                         <phase>package</phase>
  51.                         <goals>
  52.                             <goal>shade</goal>
  53.                         </goals>
  54.                         <configuration>
  55.                             <outputDirectory>${dir}</outputDirectory>
  56.                             <createDependencyReducedPom>false</createDependencyReducedPom>
  57.                             <shadedArtifactAttached>true</shadedArtifactAttached>
  58.                         </configuration>
  59.                     </execution>
  60.                 </executions>
  61.             </plugin>
  62.             <plugin>
  63.                 <groupId>org.apache.maven.plugins</groupId>
  64.                 <artifactId>maven-compiler-plugin</artifactId>
  65.                 <version>3.8.1</version>
  66.             </plugin>
  67.         </plugins>
  68.         <resources>
  69.             <resource>
  70.                 <directory>src/main/resources</directory>
  71.                 <filtering>true</filtering>
  72.             </resource>
  73.         </resources>
  74.     </build>
  75. </project>
Add Comment
Please, Sign In to add comment