Use HTTPS instead of HTTP to resolve dependencies
This fixes a security vulnerability in this project where the `pom.xml` files were configuring Maven to resolve dependencies over HTTP instead of HTTPS. Signed-off-by: Jonathan Leitschuh <Jonathan.Leitschuh@gmail.com>
This commit is contained in:
		
							
								
								
									
										6
									
								
								pom.xml
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								pom.xml
									
									
									
									
									
								
							| @@ -65,11 +65,11 @@ | |||||||
|         <repository> |         <repository> | ||||||
|             <id>maven2-repository.dev.java.net</id> |             <id>maven2-repository.dev.java.net</id> | ||||||
|             <name>Java.net Repository for Maven</name> |             <name>Java.net Repository for Maven</name> | ||||||
|             <url>http://download.java.net/maven/2/</url> |             <url>https://download.java.net/maven/2/</url> | ||||||
|         </repository> |         </repository> | ||||||
|         <repository> |         <repository> | ||||||
|             <id>bintray</id> |             <id>bintray</id> | ||||||
|             <url>http://dl.bintray.com/akuznetsov/russianmorphology</url> |             <url>https://dl.bintray.com/akuznetsov/russianmorphology</url> | ||||||
|             <releases> |             <releases> | ||||||
|                 <enabled>true</enabled> |                 <enabled>true</enabled> | ||||||
|             </releases> |             </releases> | ||||||
| @@ -83,7 +83,7 @@ | |||||||
|         <pluginRepository> |         <pluginRepository> | ||||||
|             <id>mc-release</id> |             <id>mc-release</id> | ||||||
|             <name>maven-license-plugin repository of releases</name> |             <name>maven-license-plugin repository of releases</name> | ||||||
|             <url>http://mc-repo.googlecode.com/svn/maven2/releases</url> |             <url>https://mc-repo.googlecode.com/svn/maven2/releases</url> | ||||||
|             <snapshots> |             <snapshots> | ||||||
|                 <enabled>false</enabled> |                 <enabled>false</enabled> | ||||||
|             </snapshots> |             </snapshots> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Jonathan Leitschuh
					Jonathan Leitschuh