This repository has been archived by the owner on May 13, 2023. It is now read-only.
forked from CoolCrabs/brachyura
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't include mock FF internals in the runtime classpath.
This fixes issues with QF over at sl-starplane
- Loading branch information
Showing
6 changed files
with
98 additions
and
31 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
...src/main/java/io/github/coolcrabs/brachyura/compiler/java/CompilationFailedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
package io.github.coolcrabs.brachyura.compiler.java; | ||
|
||
import org.jetbrains.annotations.NotNull; | ||
|
||
public class CompilationFailedException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = 7555474203258502895L; // Slbrachyura: Add serialVersionUID | ||
|
||
public CompilationFailedException() { | ||
// Default-constructor | ||
} | ||
|
||
public CompilationFailedException(@NotNull Throwable t) { | ||
super(t); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
javac Buildscript.java | ||
java Buildscript build | ||
java Buildscript publish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 0 additions & 22 deletions
22
fernutil/src/main/java/org/jetbrains/java/decompiler/main/Fernflower.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
javac Buildscript.java | ||
java -Dskiptests=true Buildscript build | ||
java -Dskiptests=true Buildscript publish |