~ubuntu-branches/ubuntu/vivid/maven/vivid

« back to all changes in this revision

Viewing changes to maven-core/src/main/java/org/apache/maven/repository/RepositorySystem.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2015-02-27 17:56:07 UTC
  • Revision ID: package-import@ubuntu.com-20150227175607-g8yi4fn3hgvqi1g3
Tags: 3.0.5-3
* Team upload.
* Use a secure connection by default to download artifacts
  from the Maven Central repository (Closes: #779331)

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
 
52
52
    final String DEFAULT_REMOTE_REPO_ID = "central";
53
53
 
54
 
    final String DEFAULT_REMOTE_REPO_URL = "http://repo.maven.apache.org/maven2";
 
54
    final String DEFAULT_REMOTE_REPO_URL = "https://repo.maven.apache.org/maven2";
55
55
 
56
56
    Artifact createArtifact( String groupId, String artifactId, String version, String packaging );
57
57