Skip to content
This repository has been archived by the owner on Apr 2, 2021. It is now read-only.

Commit

Permalink
Fix insecure protocols deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshilliard authored and johndevs committed Nov 25, 2019
1 parent 4055bdc commit e9f3cb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/groovy/com/devsoap/plugin/GradleVaadinPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -296,12 +296,12 @@ class GradleVaadinPlugin implements Plugin<Project> {

repositories.maven { repository ->
repository.name = ADDON_REPOSITORY_NAME
repository.url = 'http://maven.vaadin.com/vaadin-addons'
repository.url = 'https://maven.vaadin.com/vaadin-addons'
}

repositories.maven { repository ->
repository.name = VAADIN_SNAPSHOT_REPOSITORY_NAME
repository.url = 'http://oss.sonatype.org/content/repositories/vaadin-snapshots'
repository.url = 'https://oss.sonatype.org/content/repositories/vaadin-snapshots'
}

repositories.maven { repository ->
Expand Down

0 comments on commit e9f3cb1

Please sign in to comment.