Moved code for BAEL-5752 to new module
This commit is contained in:
parent
06498b9d70
commit
e5a62781ce
@ -14,5 +14,4 @@ This module contains articles about networking in Java
|
|||||||
- [Get Domain Name From Given URL in Java](https://www.baeldung.com/java-domain-name-from-url)
|
- [Get Domain Name From Given URL in Java](https://www.baeldung.com/java-domain-name-from-url)
|
||||||
- [Java HttpClient Timeout](https://www.baeldung.com/java-httpclient-timeout)
|
- [Java HttpClient Timeout](https://www.baeldung.com/java-httpclient-timeout)
|
||||||
- [Port Scanning With Java](https://www.baeldung.com/java-port-scanning)
|
- [Port Scanning With Java](https://www.baeldung.com/java-port-scanning)
|
||||||
- [Validating URL in Java](https://www.baeldung.com/java-validate-url)
|
|
||||||
- [[<-- Prev]](/core-java-modules/core-java-networking-2)
|
- [[<-- Prev]](/core-java-modules/core-java-networking-2)
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
## Relevant Articles:
|
## Relevant Articles:
|
||||||
- [Difference Between URI.create() and new URI()](https://www.baeldung.com/java-uri-create-and-new-uri)
|
- [Difference Between URI.create() and new URI()](https://www.baeldung.com/java-uri-create-and-new-uri)
|
||||||
|
- [Validating URL in Java](https://www.baeldung.com/java-validate-url)
|
@ -13,8 +13,21 @@
|
|||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<!-- https://mvnrepository.com/artifact/commons-validator/commons-validator -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>commons-validator</groupId>
|
||||||
|
<artifactId>commons-validator</artifactId>
|
||||||
|
<version>${apache.commons-validator.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<finalName>core-java-networking-4</finalName>
|
<finalName>core-java-networking-4</finalName>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<apache.commons-validator.version>1.7</apache.commons-validator.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<configuration>
|
||||||
|
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
||||||
|
<encoder>
|
||||||
|
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
|
||||||
|
</pattern>
|
||||||
|
</encoder>
|
||||||
|
</appender>
|
||||||
|
|
||||||
|
<root level="INFO">
|
||||||
|
<appender-ref ref="STDOUT" />
|
||||||
|
</root>
|
||||||
|
</configuration>
|
Loading…
x
Reference in New Issue
Block a user