Skip to content

Commit

Permalink
Minor changes, updated Version to 0.1.1!
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacrispys committed Apr 5, 2022
1 parent f1a0ae7 commit 92fb4a1
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 2 deletions.
78 changes: 78 additions & 0 deletions dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.Jacrispys</groupId>
<artifactId>DiscordBot</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>process-test-annotations</id>
<phase>generate-test-resources</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<proc>only</proc>
<annotationProcessors>
<annotationProcessor>com.jacrispys.JavaBot.Utils.ExperimentalUtils.ExperimentalProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
</execution>
</executions>
<configuration>
<proc>none</proc>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.jacrispys.JavaBot.JavaBotMain</mainClass>
</manifest>
</archive>
<outputDirectory>C:\Users\jvanz\Desktop\Bot</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>dv8tion</id>
<name>m2-dv8tion</name>
<url>https://m2.dv8tion.net/releases</url>
</repository>
<repository>
<id>jitpack</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<properties>
<maven.compiler.target>8</maven.compiler.target>
<mainClass>com.jacrispys.JavaBot.JavaBotMain</mainClass>
<maven.compiler.source>8</maven.compiler.source>
<author>Jacrispys</author>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.Jacrispys</groupId>
<artifactId>DiscordBot</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1.1</version>
<build>
<plugins>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void runSpy(Guild guild) {
embedBuilder.setTitle("GameSpy™ Report");
embedBuilder.setColor(new Color(0x530C84));
embedBuilder.setDescription("Generated by SSB on: " + LocalDate.now() + "\n");
embedBuilder.setAuthor("Jacrispys");
embedBuilder.setAuthor("Made & Maintained by: Jacrispys");
embedBuilder.setImage("https://i.imgur.com/MD8RHHL.png");

StringBuilder richValue = new StringBuilder();
Expand Down

0 comments on commit 92fb4a1

Please sign in to comment.