From fe165ca2718157ece906d885bcb4089fa6fa53d3 Mon Sep 17 00:00:00 2001 From: Erik Forkalsrud Date: Sat, 20 Feb 2021 15:43:42 -0800 Subject: [PATCH] update jave version to 1.8 add helpful message in Runner --- pom.xml | 8 +++++--- src/test/java/org/forkalsrud/album/Runner.java | 2 ++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 5a3b725..30cb3e6 100644 --- a/pom.xml +++ b/pom.xml @@ -38,8 +38,8 @@ maven-compiler-plugin 2.3.2 - 1.6 - 1.6 + 1.8 + 1.8 @@ -48,6 +48,8 @@ 6.1.14 photo + + @@ -183,7 +185,7 @@ org.slf4j slf4j-log4j12 1.7.7 - runtime + compile org.slf4j diff --git a/src/test/java/org/forkalsrud/album/Runner.java b/src/test/java/org/forkalsrud/album/Runner.java index 3e47123..ab0573e 100644 --- a/src/test/java/org/forkalsrud/album/Runner.java +++ b/src/test/java/org/forkalsrud/album/Runner.java @@ -21,6 +21,8 @@ public class Runner { server.setHandler(context); server.start(); + + System.out.println("Visit http://localhost:8080/photo/album/"); server.join(); }