<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</artifactId> <version>0.1.0-SNAPSHOT</version> <name>core-java-networking</name> <packaging>jar</packaging> <parent> <groupId>com.baeldung</groupId> <artifactId>parent-java</artifactId> <version>0.0.1-SNAPSHOT</version> <relativePath>../../parent-java</relativePath> </parent> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${springframework.spring-web.version}</version> </dependency> </dependencies> <build> <finalName>core-java-networking</finalName> </build> <properties> <springframework.spring-web.version>4.3.4.RELEASE</springframework.spring-web.version> </properties> </project>