File tree Expand file tree Collapse file tree 3 files changed +14
-5
lines changed
org/mangorage/mangobotsite Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ tasks.withType(JavaExec).configureEach {
6161
6262repositories {
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' )
Original file line number Diff line number Diff line change 11module org .mangorage .mangobotwebsite {
2+
3+ // version "1.0.0";
4+
25 requires freemarker ;
36
47 requires org .mangorage .mangobotplugin ;
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
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}
Original file line number Diff line number Diff 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 () {
You can’t perform that action at this time.
0 commit comments