java-tutorials/javax-servlets/pom.xml

62 lines
2.1 KiB
XML
Raw Normal View History

<?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>
2016-12-27 06:00:01 -05:00
<groupId>com.baeldung</groupId>
<artifactId>javax-servlets</artifactId>
<version>1.0-SNAPSHOT</version>
2016-12-27 06:00:01 -05:00
2016-12-10 08:43:26 -05:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
2016-12-12 07:39:09 -05:00
<source>1.8</source>
<target>1.8</target>
2016-12-10 08:43:26 -05:00
</configuration>
</plugin>
2016-12-14 10:37:26 -05:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
</configuration>
</plugin>
2016-12-10 08:43:26 -05:00
</plugins>
</build>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${javax.servlet.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
2016-11-29 03:55:32 -05:00
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${org.apache.httpcomponents.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<javax.servlet.version>3.1.0</javax.servlet.version>
<junit.version>4.12</junit.version>
2016-12-12 07:39:09 -05:00
<org.apache.httpcomponents.version>4.5.2</org.apache.httpcomponents.version>
</properties>
</project>