BAEL-2976 http basic auth

This commit is contained in:
binary-joe
2019-08-22 22:38:33 +02:00
parent 8e3ec55376
commit 7da248c9db
3 changed files with 135 additions and 2 deletions
@@ -1,5 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>core-java-networking-2</artifactId>
<name>core-java-networking-2</name>
@@ -12,9 +12,18 @@
</parent>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclient.version}</version>
</dependency>
</dependencies>
<build>
<finalName>core-java-networking-2</finalName>
</build>
</build>
<properties>
<httpclient.version>4.5.9</httpclient.version>
</properties>
</project>