Skip to content

Commit

Permalink
Readme updates and set compiler plugin to Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
SoAJeff committed Apr 6, 2024
1 parent 8705778 commit 8fd364a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Version 3 of the SoA Discord Bot is a complete rewrite to accomodate the new Pro

## Building the Bot
To build the bot it is recommended to have:
- Java 8+. Discord4J supports Java 8 and above. You can download the JDK from [Oracle's Website](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)
- Java 17+. Discord4J supports Java 8 and above. The current bot is tested and running with Java 21. You can download the JDK from [Oracle's Website](https://www.oracle.com/java/technologies/downloads/)
- Apache Maven. The bot is currently structured to build with Maven. You can get Maven from [Apache's Website](https://maven.apache.org/)

The bot can be built by running the following command:
Expand Down
4 changes: 2 additions & 2 deletions soa-discord/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 8fd364a

Please sign in to comment.