summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorStéphane Nicoll <stephane.nicoll@gmail.com>2019-07-29 08:45:31 +0200
committerZhe Sun <31067185+ZheSun88@users.noreply.github.com>2019-07-29 09:45:31 +0300
commitd2443b0a82505b2d4566fbd3a7f849e50afc07d3 (patch)
tree2e21b5515fe679b1b1a3e5386d53473540a8a562 /scripts
parent386c5cea7659a012bdf5cc4b61c352336bff8d2f (diff)
downloadvaadin-framework-d2443b0a82505b2d4566fbd3a7f849e50afc07d3.tar.gz
vaadin-framework-d2443b0a82505b2d4566fbd3a7f849e50afc07d3.zip
Use https for Maven repositories (#11668)
* Use https for Maven repositories
Diffstat (limited to 'scripts')
-rw-r--r--scripts/GeneratePublishReportPart1.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/GeneratePublishReportPart1.py b/scripts/GeneratePublishReportPart1.py
index 737f8d675e..483fbf93cc 100644
--- a/scripts/GeneratePublishReportPart1.py
+++ b/scripts/GeneratePublishReportPart1.py
@@ -76,10 +76,10 @@ content = """<html>
mavenUrl = ""
if not prerelease:
- mavenUrl = "http://repo1.maven.org/maven2/com/vaadin/vaadin-server/"
+ mavenUrl = "https://repo1.maven.org/maven2/com/vaadin/vaadin-server/"
content += "<tr><td></td><td><a href='{mvnUrl}'>Check {ver} is published to maven.org (might take a while)</td></tr>".format(ver=args.version, mvnUrl=mavenUrl)
else:
- mavenUrl = "http://maven.vaadin.com/vaadin-prereleases/com/vaadin/vaadin-server/"
+ mavenUrl = "https://maven.vaadin.com/vaadin-prereleases/com/vaadin/vaadin-server/"
content += "<tr><td></td><td><a href='{mvnUrl}'>Check {ver} is published as prerelease to maven.vaadin.com</td></tr>".format(ver=args.version, mvnUrl=mavenUrl)
content += "<tr><td></td><td><a href=\"https://github.com/vaadin/framework/milestones\">Create milestone for next version in GitHub</a></td></tr>"