From 62010da59314db1a86f8f21677d366f3233b5a11 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Thu, 16 Jan 2020 15:27:41 +0100 Subject: [PATCH] Update piccolo2d-core and piccolo2d-extras Make also curl less noisy. Signed-off-by: Stefan Weil --- INSTALL.GIT.md | 4 ++-- java/Makefile.am | 12 ++++++------ java/Manifest.txt | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/INSTALL.GIT.md b/INSTALL.GIT.md index dc01004c..91675b9e 100644 --- a/INSTALL.GIT.md +++ b/INSTALL.GIT.md @@ -40,8 +40,8 @@ all languages). You need an Internet connection and [curl](https://curl.haxx.se/) to compile `ScrollView.jar` because the build will automatically download -[piccolo2d-core-3.0.jar](http://search.maven.org/remotecontent?filepath=org/piccolo2d/piccolo2d-core/3.0/piccolo2d-core-3.0.jar > piccolo2d-core-3.0.jar) and -[piccolo2d-extras-3.0.jar](http://search.maven.org/remotecontent?filepath=org/piccolo2d/piccolo2d-extras/3.0/piccolo2d-extras-3.0.jar) and +[piccolo2d-core-3.0.1.jar](https://search.maven.org/remotecontent?filepath=org/piccolo2d/piccolo2d-core/3.0.1/piccolo2d-core-3.0.1.jar) and +[piccolo2d-extras-3.0.1.jar](https://search.maven.org/remotecontent?filepath=org/piccolo2d/piccolo2d-extras/3.0.1/piccolo2d-extras-3.0.1.jar) and [jaxb-api-2.3.1.jar](http://search.maven.org/remotecontent?filepath=javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar) and place them to `tesseract/java`. Just run: diff --git a/java/Makefile.am b/java/Makefile.am index ed45847c..6fdde189 100644 --- a/java/Makefile.am +++ b/java/Makefile.am @@ -36,11 +36,11 @@ SCROLLVIEW_CLASSES = \ com/google/scrollview/ScrollView.class SCROLLVIEW_LIBS = \ - piccolo2d-core-3.0.jar \ - piccolo2d-extras-3.0.jar \ + piccolo2d-core-3.0.1.jar \ + piccolo2d-extras-3.0.1.jar \ jaxb-api-2.3.1.jar -CLASSPATH = piccolo2d-core-3.0.jar:piccolo2d-extras-3.0.jar:jaxb-api-2.3.1.jar +CLASSPATH = piccolo2d-core-3.0.1.jar:piccolo2d-extras-3.0.1.jar:jaxb-api-2.3.1.jar ScrollView.jar : $(SCROLLVIEW_CLASSES) $(JAR) cfm $@ $(srcdir)/Manifest.txt com/google/scrollview/*.class \ @@ -51,9 +51,9 @@ $(SCROLLVIEW_CLASSES) : $(SCROLLVIEW_FILES) $(SCROLLVIEW_LIBS) .PHONY: fetch-jars fetch-jars $(SCROLLVIEW_LIBS): - curl -L http://search.maven.org/remotecontent?filepath=org/piccolo2d/piccolo2d-core/3.0/piccolo2d-core-3.0.jar > piccolo2d-core-3.0.jar - curl -L http://search.maven.org/remotecontent?filepath=org/piccolo2d/piccolo2d-extras/3.0/piccolo2d-extras-3.0.jar > piccolo2d-extras-3.0.jar - curl -L http://search.maven.org/remotecontent?filepath=javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar > jaxb-api-2.3.1.jar + curl -s -S -L -O https://search.maven.org/remotecontent?filepath=org/piccolo2d/piccolo2d-core/3.0.1/piccolo2d-core-3.0.1.jar + curl -s -S -L -O https://search.maven.org/remotecontent?filepath=org/piccolo2d/piccolo2d-extras/3.0.1/piccolo2d-extras-3.0.1.jar + curl -s -S -L -O https://search.maven.org/remotecontent?filepath=javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar .PHONY: install-jars install-jars : ScrollView.jar diff --git a/java/Manifest.txt b/java/Manifest.txt index 2dbf82f8..797665cb 100644 --- a/java/Manifest.txt +++ b/java/Manifest.txt @@ -1,2 +1,2 @@ Main-Class: com/google/scrollview/ScrollView -Class-Path: ScrollView.jar piccolo2d-core-3.0.jar piccolo2d-extras-3.0.jar jaxb-api-2.3.1.jar +Class-Path: ScrollView.jar piccolo2d-core-3.0.1.jar piccolo2d-extras-3.0.1.jar jaxb-api-2.3.1.jar