2022-10-29 22:00:33 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>core-java-networking-4</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2024-03-15 17:51:19 -04:00
|
|
|
<name>core-java-networking-4</name>
|
2022-10-29 22:00:33 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.core-java-modules</groupId>
|
|
|
|
<artifactId>core-java-modules</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2022-11-21 07:36:30 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-validator</groupId>
|
|
|
|
<artifactId>commons-validator</artifactId>
|
2024-02-27 17:10:08 -05:00
|
|
|
<version>${commons-validator.version}</version>
|
2022-11-21 07:36:30 -05:00
|
|
|
</dependency>
|
2023-02-25 22:26:44 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
<version>${jsoup.version}</version>
|
|
|
|
</dependency>
|
2023-04-13 13:02:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2024-02-27 17:10:08 -05:00
|
|
|
<version>${httpclient.version}</version>
|
2023-04-13 13:02:41 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
2024-02-27 17:10:08 -05:00
|
|
|
<version>${javax.ws.rs-api.version}</version>
|
2023-04-13 13:02:41 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
|
|
<artifactId>jersey-common</artifactId>
|
2024-02-27 17:10:08 -05:00
|
|
|
<version>${jersey-common.version}</version>
|
2023-04-13 13:02:41 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
2024-02-27 17:10:08 -05:00
|
|
|
<version>${spring-web.version}</version>
|
2023-04-13 13:02:41 -04:00
|
|
|
</dependency>
|
2022-11-21 07:36:30 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2024-02-27 17:10:08 -05:00
|
|
|
<commons-validator.version>1.7</commons-validator.version>
|
|
|
|
<jsoup.version>1.17.2</jsoup.version>
|
|
|
|
<httpclient.version>4.5.2</httpclient.version>
|
|
|
|
<javax.ws.rs-api.version>2.1.1</javax.ws.rs-api.version>
|
|
|
|
<jersey-common.version>2.22.2</jersey-common.version>
|
|
|
|
<spring-web.version>6.0.6</spring-web.version>
|
2022-11-21 07:36:30 -05:00
|
|
|
</properties>
|
|
|
|
|
2022-11-17 13:56:06 -05:00
|
|
|
</project>
|