TOMEE-2975 - Adds pgp / asc links in the code, use https
diff --git a/src/main/java/org/apache/tomee/website/Downloads.java b/src/main/java/org/apache/tomee/website/Downloads.java
index cb63681..d2812fa 100755
--- a/src/main/java/org/apache/tomee/website/Downloads.java
+++ b/src/main/java/org/apache/tomee/website/Downloads.java
@@ -36,7 +36,7 @@
 @RequiredArgsConstructor(access = PRIVATE)
 public class Downloads {
     private static final SAXParserFactory FACTORY = SAXParserFactory.newInstance();
-    private static final String MVN_BASE = "http://repo.maven.apache.org/maven2/";
+    private static final String MVN_BASE = "https://repo.maven.apache.org/maven2/";
     private static final long MEGA_RATIO = 1024 * 1024;
 
     static {
@@ -149,7 +149,7 @@
                 "|" + new SimpleDateFormat("d MMM yyyy").format(Date.from(LocalDateTime.parse(d.date, RFC_1123_DATE_TIME).toInstant(ZoneOffset.UTC))) +
                 "|" + d.size + " MB " +
                 "|" + d.format.toUpperCase() +
-                "| " + d.url + "[icon:download[] " + d.format.toUpperCase() + "] " + d.sha1 + "[icon:download[] SHA1] " + d.md5 + "[icon:download[] MD5]");
+                "| " + d.url + "[icon:download[] " + d.format.toUpperCase() + "] " + d.sha1 + "[icon:download[] SHA1] " + d.md5 + "[icon:download[] MD5]" + d.asc + "[icon:download[] PGP]");
     }
 
     private static void checkMaxVersion(AtomicReference<String> version1, AtomicReference<String> version7, Download o1, int versionComp) {