This is an automated email from the ASF dual-hosted git repository.
solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git
The following commit(s) were added to refs/heads/master by this push:
new 72ca07d Fix non-https dependency urls (#21)
72ca07d is described below
commit 72ca07d9c490c11381391f0dc67cba49de6f1f92
Author: Denis Kandrov <[email protected]>
AuthorDate: Wed May 22 14:00:41 2019 +0700
Fix non-https dependency urls (#21)
---
openmeetings-server/pom.xml | 2 +-
pom.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/openmeetings-server/pom.xml b/openmeetings-server/pom.xml
index cfbe9df..88374ea 100644
--- a/openmeetings-server/pom.xml
+++ b/openmeetings-server/pom.xml
@@ -133,7 +133,7 @@
<goal>download-single</goal>
</goals>
<configuration>
-
<url>http://archive.apache.org/dist/tomcat/tomcat-9/v${tomcat.version}/bin</url>
+
<url>https://archive.apache.org/dist/tomcat/tomcat-9/v${tomcat.version}/bin</url>
<fromFile>apache-tomcat-${tomcat.version}.tar.gz</fromFile>
<toDir>${server-file.dir}</toDir>
<skip>${server.dwnd.skip}</skip>
diff --git a/pom.xml b/pom.xml
index 1c83196..ec4dc5f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -380,7 +380,7 @@
<repository>
<id>sonatype-snapshots</id>
<name>Sonatype Snapshots Repository</name>
-
<url>http://oss.sonatype.org/content/repositories/snapshots/</url>
+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>