2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 13:11:38 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-07-25 02:34:39 -04:00
|
|
|
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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>core-java-networking</artifactId>
|
|
|
|
<name>core-java-networking</name>
|
|
|
|
<packaging>jar</packaging>
|
2021-05-06 13:11:38 -04:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<parent>
|
2020-05-25 10:15:48 -04:00
|
|
|
<groupId>com.baeldung.core-java-modules</groupId>
|
|
|
|
<artifactId>core-java-modules</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<version>${springframework.spring-web.version}</version>
|
|
|
|
</dependency>
|
2023-04-24 20:35:42 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>${apache.httpclient.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>core-java-networking</finalName>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<springframework.spring-web.version>4.3.4.RELEASE</springframework.spring-web.version>
|
2023-04-24 20:35:42 -04:00
|
|
|
<apache.httpclient.version>4.5.14</apache.httpclient.version>
|
2019-12-05 09:56:52 -05:00
|
|
|
</properties>
|
|
|
|
|
2021-05-06 13:11:38 -04:00
|
|
|
</project>
|