diff options
author | Tarek Oraby <42799254+tarekoraby@users.noreply.github.com> | 2020-05-12 10:10:08 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 10:10:08 +0300 |
commit | b3ff732f0c989d8fd9066e0e7eaa7d886746ce2d (patch) | |
tree | 942acde29ea2446b8a035cd7a27fef23f7cad9c0 | |
parent | e829b469b1ef3162ffdab29d4f2197a868e7c897 (diff) | |
download | vaadin-framework-b3ff732f0c989d8fd9066e0e7eaa7d886746ce2d.tar.gz vaadin-framework-b3ff732f0c989d8fd9066e0e7eaa7d886746ce2d.zip |
Define maven central with https (#11994)
-rw-r--r-- | pom.xml | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -52,9 +52,26 @@ <phantomjs.version>2.1.1</phantomjs.version> </properties> + <repositories> + <repository> + <id>central</id> + <url>https://repo.maven.apache.org/maven2/</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + </repositories> + <!-- TODO: remove this after maven plugin has been released --> <pluginRepositories> <pluginRepository> + <id>central</id> + <url>https://repo.maven.apache.org/maven2/</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + </pluginRepository> + <pluginRepository> <id>vaadin-prereleases</id> <url>http://maven.vaadin.com/vaadin-prereleases</url> </pluginRepository> |