2022-02-25 01:36:17 -05: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>
|
|
|
|
<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>
|
2022-08-21 05:14:00 -04:00
|
|
|
<artifactId>web-modules</artifactId>
|
2022-02-25 01:36:17 -05:00
|
|
|
<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>
|
2023-08-22 19:09:58 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
|
<version>${commons-text.version}</version>
|
|
|
|
</dependency>
|
2022-02-25 01:36:17 -05:00
|
|
|
<!-- 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>
|
2022-06-04 01:19:26 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jmockit</groupId>
|
|
|
|
<artifactId>jmockit</artifactId>
|
|
|
|
<version>${jmockit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${spring-test.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-02-25 01:36:17 -05:00
|
|
|
<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>
|
|
|
|
|
2022-07-15 00:29:54 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<argLine>
|
|
|
|
-javaagent:"${settings.localRepository}"/org/jmockit/jmockit/${jmockit.version}/jmockit-${jmockit.version}.jar
|
|
|
|
</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2023-08-22 19:09:58 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
|
|
<version>${jetty-maven-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<webApp>
|
|
|
|
<contextPath>/</contextPath>
|
|
|
|
</webApp>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-07-15 00:29:54 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-06-04 01:19:26 -04:00
|
|
|
|
2022-02-25 01:36:17 -05:00
|
|
|
<properties>
|
|
|
|
<org.apache.httpcomponents.version>4.5.13</org.apache.httpcomponents.version>
|
2022-06-04 01:19:26 -04:00
|
|
|
<jmockit.version>1.49</jmockit.version>
|
|
|
|
<spring-test.version>5.3.20</spring-test.version>
|
|
|
|
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
|
2023-08-22 19:09:58 -04:00
|
|
|
<jetty-maven-plugin.version>10.0.4</jetty-maven-plugin.version>
|
|
|
|
<commons-text.version>1.10.0</commons-text.version>
|
2022-02-25 01:36:17 -05:00
|
|
|
</properties>
|
2022-03-13 05:18:44 -04:00
|
|
|
|
|
|
|
</project>
|