From 4b1e876165ecdc6b2aecdaa03c316af2001e9195 Mon Sep 17 00:00:00 2001 From: Andreas Romeyke <art1@andreas-romeyke.de> Date: Thu, 27 May 2021 18:24:01 +0200 Subject: [PATCH] - updated JDK and SDK paths / versions --- Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 8bcf475..ec525f1 100644 --- a/Makefile +++ b/Makefile @@ -3,11 +3,11 @@ # erzeugt Submission-Application, die vorbereitete Verzeichnisse per Java SDK # von ExLibris an Rosetta übergibt. -# Pfad zu Java 7 -JAVAPATH=$(wildcard /usr/lib/jvm/java-8-openjdk-*/bin/) +# Pfad zu Java +JAVAPATH=$(wildcard /usr/lib/jvm/java-11-openjdk-*/bin/) # Verwendete Rosetta-Version -ROSETTAVERSION=5.5.0 +ROSETTAVERSION=6.3.0 # Pfad zum Rosetta-SDK ROSETTASDK=/exlibris/dps/d4_1/system.dir/dps-sdk-${ROSETTAVERSION}/lib/ @@ -32,7 +32,7 @@ JAR=SLUBVirusCheckPlugin.jar all: $(JAR) help: - @echo "erzeugt Storage-Plugin für Rosetta von Exlibris" + @echo "erzeugt ${JAR} für Rosetta von Exlibris" @echo "" @echo "Das Argument 'clean' löscht temporäre Dateien, 'help' gibt diese Hilfe aus und" @echo "'compile' erzeugt ein JAR-File und ein Bash-Script welches das Java-Programm" @@ -73,4 +73,3 @@ check_prerequisites: @if [ -e $(ROSETTASDK) ]; then echo "fine :)"; else echo " not found! :("; fi .PHONY: help clean distclean jarclean test - -- GitLab