61 lines
2.2 KiB
XML
61 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>
|
||
|
<groupId>com.baeldung.javax-servlets</groupId>
|
||
|
<artifactId>javax-servlets-2</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<name>javax-servlets-2</name>
|
||
|
<packaging>war</packaging>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>parent-modules</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- File Uploading -->
|
||
|
<dependency>
|
||
|
<groupId>commons-fileupload</groupId>
|
||
|
<artifactId>commons-fileupload</artifactId>
|
||
|
<version>${commons-fileupload.version}</version>
|
||
|
</dependency>
|
||
|
<!-- Servlet -->
|
||
|
<dependency>
|
||
|
<groupId>javax.servlet</groupId>
|
||
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
<version>${javax.servlet-api.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.servlet.jsp</groupId>
|
||
|
<artifactId>javax.servlet.jsp-api</artifactId>
|
||
|
<version>${javax.servlet.jsp-api.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.servlet</groupId>
|
||
|
<artifactId>jstl</artifactId>
|
||
|
<version>${jstl.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
<artifactId>httpclient</artifactId>
|
||
|
<version>${org.apache.httpcomponents.version}</version>
|
||
|
<scope>test</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>commons-logging</artifactId>
|
||
|
<groupId>commons-logging</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<properties>
|
||
|
<org.apache.httpcomponents.version>4.5.13</org.apache.httpcomponents.version>
|
||
|
<javax.servlet-api.version>4.0.1</javax.servlet-api.version>
|
||
|
</properties>
|
||
|
</project>
|