Skip to content

Commit 0058be2

Browse files
committed
Fixed some stuff...
1 parent 05212df commit 0058be2

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ tasks.withType(JavaExec).configureEach {
6161

6262
repositories {
6363
mavenCentral()
64+
mavenLocal()
6465

6566
maven {
6667
url = 'https://maven.minecraftforge.net/'
@@ -81,10 +82,10 @@ dependencies {
8182
testImplementation 'org.junit.jupiter:junit-jupiter'
8283

8384
installer('org.mangorage:installer:4.0.15')
84-
bootstrap("org.mangorage:mangobotbootstrap:1.0.22")
85+
bootstrap("org.mangorage:mangobotbootstrap:+")
8586

86-
plugin('org.mangorage:mangobot:12.0.57')
87-
plugin('org.mangorage:mangobotplugin:12.0.28')
87+
plugin('org.mangorage:mangobot:12.0.63')
88+
plugin('org.mangorage:mangobotplugin:12.0.37')
8889

8990
library('org.eclipse.jetty:jetty-server:11.0.16')
9091
library('org.eclipse.jetty:jetty-servlet:11.0.16')

src/main/java/module-info.java

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
module org.mangorage.mangobotwebsite {
2+
3+
// version "1.0.0";
4+
25
requires freemarker;
36

47
requires org.mangorage.mangobotplugin;
@@ -9,12 +12,16 @@
912
requires net.minecraftforge.eventbus;
1013
requires net.dv8tion.jda;
1114

15+
// Files
16+
opens templates.file;
17+
opens templates.general;
18+
opens templates;
19+
1220
exports org.mangorage.mangobotsite;
1321
exports org.mangorage.mangobotsite.website.file;
1422
exports org.mangorage.mangobotsite.website.servlet.entity;
1523

1624

17-
1825
exports org.mangorage.mangobotsite.website.filters to org.eclipse.jetty.server;
1926
exports org.mangorage.mangobotsite.website.servlet to org.eclipse.jetty.server;
2027

@@ -31,4 +38,6 @@
3138

3239
provides org.mangorage.mangobotcore.plugin.api.Plugin with org.mangorage.mangobotsite.MangoBotSite;
3340
uses org.mangorage.mangobotcore.plugin.api.Plugin;
41+
42+
3443
}

src/main/java/org/mangorage/mangobotsite/MangoBotSite.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ public final class MangoBotSite implements Plugin {
2020
private final EntityManager entityManager = new EntityManager();
2121

2222
public MangoBotSite() {
23-
2423
}
2524

2625
public FileUploadManager getFileUploadManager() {

0 commit comments

Comments
 (0)