59 lines
2.2 KiB
XML
59 lines
2.2 KiB
XML
|
<?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-5</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<name>core-java-networking-5</name>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.baeldung.core-java-modules</groupId>
|
||
|
<artifactId>core-java-modules</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>commons-validator</groupId>
|
||
|
<artifactId>commons-validator</artifactId>
|
||
|
<version>${commons-validator.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jsoup</groupId>
|
||
|
<artifactId>jsoup</artifactId>
|
||
|
<version>${jsoup.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
<artifactId>httpclient</artifactId>
|
||
|
<version>${httpclient.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.ws.rs</groupId>
|
||
|
<artifactId>javax.ws.rs-api</artifactId>
|
||
|
<version>${javax.ws.rs-api.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.core</groupId>
|
||
|
<artifactId>jersey-common</artifactId>
|
||
|
<version>${jersey-common.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-web</artifactId>
|
||
|
<version>${spring-web.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<properties>
|
||
|
<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>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|