1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Description: omitting to build JalviewLite (because it needs applets, that are
not supported anymore from openjdk-17) and the classes that need it.
Author: Pierre Gruet <pgt@debian.org>
Bug-Debian: https://bugs.debian.org/1011184
Forwarded: jalview-dev@jalview.org
Last-Update: 2022-05-22
--- a/build.gradle
+++ b/build.gradle
@@ -252,6 +252,13 @@
java {
srcDirs sourceDir
outputDir = file(classesDir)
+ exclude "**/appletgui/**"
+ exclude "**/AppletPDBViewer.java"
+ exclude "**/AppletPDBCanvas.java"
+ exclude "**/javascript/J*.java"
+ exclude "**/javascript/MouseOverListener.java"
+ exclude "**/javascript/MouseOverStructureListener.java"
+ exclude "**/JalviewLite*"
}
resources {
@@ -270,6 +277,7 @@
srcDirs testSourceDir
outputDir = file(testClassesDir)
exclude "**/CommandLineOperationsNG.java"
+ exclude "**/JalviewLiteTest.java"
}
resources {
|