|
| 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/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.Jacrispys</groupId> |
| 5 | + <artifactId>DiscordBot</artifactId> |
| 6 | + <version>1.0-SNAPSHOT</version> |
| 7 | + <build> |
| 8 | + <plugins> |
| 9 | + <plugin> |
| 10 | + <artifactId>maven-compiler-plugin</artifactId> |
| 11 | + <executions> |
| 12 | + <execution> |
| 13 | + <id>process-test-annotations</id> |
| 14 | + <phase>generate-test-resources</phase> |
| 15 | + <goals> |
| 16 | + <goal>testCompile</goal> |
| 17 | + </goals> |
| 18 | + <configuration> |
| 19 | + <proc>only</proc> |
| 20 | + <annotationProcessors> |
| 21 | + <annotationProcessor>com.jacrispys.JavaBot.Utils.ExperimentalUtils.ExperimentalProcessor</annotationProcessor> |
| 22 | + </annotationProcessors> |
| 23 | + </configuration> |
| 24 | + </execution> |
| 25 | + </executions> |
| 26 | + <configuration> |
| 27 | + <proc>none</proc> |
| 28 | + <source>17</source> |
| 29 | + <target>17</target> |
| 30 | + </configuration> |
| 31 | + </plugin> |
| 32 | + <plugin> |
| 33 | + <artifactId>maven-shade-plugin</artifactId> |
| 34 | + <version>3.2.4</version> |
| 35 | + <executions> |
| 36 | + <execution> |
| 37 | + <phase>package</phase> |
| 38 | + <goals> |
| 39 | + <goal>shade</goal> |
| 40 | + </goals> |
| 41 | + </execution> |
| 42 | + </executions> |
| 43 | + </plugin> |
| 44 | + <plugin> |
| 45 | + <artifactId>maven-jar-plugin</artifactId> |
| 46 | + <version>2.3.1</version> |
| 47 | + <configuration> |
| 48 | + <archive> |
| 49 | + <manifest> |
| 50 | + <addClasspath>true</addClasspath> |
| 51 | + <classpathPrefix>lib/</classpathPrefix> |
| 52 | + <mainClass>com.jacrispys.JavaBot.JavaBotMain</mainClass> |
| 53 | + </manifest> |
| 54 | + </archive> |
| 55 | + <outputDirectory>C:\Users\jvanz\Desktop\Bot</outputDirectory> |
| 56 | + </configuration> |
| 57 | + </plugin> |
| 58 | + </plugins> |
| 59 | + </build> |
| 60 | + <repositories> |
| 61 | + <repository> |
| 62 | + <id>dv8tion</id> |
| 63 | + <name>m2-dv8tion</name> |
| 64 | + <url>https://m2.dv8tion.net/releases</url> |
| 65 | + </repository> |
| 66 | + <repository> |
| 67 | + <id>jitpack</id> |
| 68 | + <url>https://jitpack.io</url> |
| 69 | + </repository> |
| 70 | + </repositories> |
| 71 | + <properties> |
| 72 | + <maven.compiler.target>8</maven.compiler.target> |
| 73 | + <mainClass>com.jacrispys.JavaBot.JavaBotMain</mainClass> |
| 74 | + <maven.compiler.source>8</maven.compiler.source> |
| 75 | + <author>Jacrispys</author> |
| 76 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 77 | + </properties> |
| 78 | +</project> |
0 commit comments