Skip to content

Commit 92fb4a1

Browse files
committed
Minor changes, updated Version to 0.1.1!
1 parent f1a0ae7 commit 92fb4a1

File tree

3 files changed

+80
-2
lines changed

3 files changed

+80
-2
lines changed

dependency-reduced-pom.xml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
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>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.Jacrispys</groupId>
88
<artifactId>DiscordBot</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>0.1.1</version>
1010
<build>
1111
<plugins>
1212
<plugin>

src/main/java/com/jacrispys/JavaBot/Utils/GameSpyThread.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void runSpy(Guild guild) {
5555
embedBuilder.setTitle("GameSpy™ Report");
5656
embedBuilder.setColor(new Color(0x530C84));
5757
embedBuilder.setDescription("Generated by SSB on: " + LocalDate.now() + "\n");
58-
embedBuilder.setAuthor("Jacrispys");
58+
embedBuilder.setAuthor("Made & Maintained by: Jacrispys");
5959
embedBuilder.setImage("https://i.imgur.com/MD8RHHL.png");
6060

6161
StringBuilder richValue = new StringBuilder();

0 commit comments

Comments
 (0)