2019-05-12 20:21:05 +03:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 12:34:54 +05:30
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2015-07-23 16:54:23 +03:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<artifactId>spring-mvc-xml</artifactId>
|
|
|
|
<name>spring-mvc-xml</name>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
2017-05-09 22:37:43 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2017-05-12 20:32:54 +02:00
|
|
|
</parent>
|
|
|
|
|
2015-07-23 16:54:23 +03:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- Spring -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- web -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2019-07-14 18:40:26 +05:30
|
|
|
<version>${javax.servlet-api.version}</version>
|
2015-07-23 16:54:23 +03:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
2016-12-06 16:10:47 +02:00
|
|
|
<version>${jstl.version}</version>
|
2015-07-23 16:54:23 +03:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2019-05-12 20:21:05 +03:00
|
|
|
<groupId>org.hibernate.validator</groupId>
|
2015-07-23 16:54:23 +03:00
|
|
|
<artifactId>hibernate-validator</artifactId>
|
2016-12-06 16:10:47 +02:00
|
|
|
<version>${hibernate-validator.version}</version>
|
2015-07-23 16:54:23 +03:00
|
|
|
</dependency>
|
|
|
|
|
2016-03-11 22:54:45 -05:00
|
|
|
<!-- Json conversion -->
|
2018-07-12 12:34:54 +05:30
|
|
|
|
2016-10-12 07:44:40 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
2016-04-18 23:13:05 +03:00
|
|
|
|
|
|
|
<!-- IO -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
2016-12-06 16:10:47 +02:00
|
|
|
<version>${commons-io.version}</version>
|
2016-04-18 23:13:05 +03:00
|
|
|
</dependency>
|
2016-11-19 03:32:52 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>com.maxmind.geoip2</groupId>
|
|
|
|
<artifactId>geoip2</artifactId>
|
2016-12-06 16:10:47 +02:00
|
|
|
<version>${geoip2.version}</version>
|
2017-02-22 15:23:26 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</exclusion>
|
2017-04-19 16:14:10 +02:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
2017-05-12 20:32:54 +02:00
|
|
|
</exclusions>
|
2017-02-22 15:23:26 +01:00
|
|
|
</dependency>
|
2019-05-12 20:21:05 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
<artifactId>javax.el</artifactId>
|
2019-07-07 01:08:17 +05:30
|
|
|
<version>${javax.el.version}</version>
|
2019-05-12 20:21:05 +03:00
|
|
|
</dependency>
|
2018-12-18 23:10:32 +02:00
|
|
|
|
2018-09-15 22:19:20 -04:00
|
|
|
<dependency>
|
2018-12-18 23:10:32 +02:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2019-04-07 00:19:58 +05:30
|
|
|
<version>${spring-boot.version}</version>
|
2018-12-18 23:10:32 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-07-23 16:54:23 +03:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>spring-mvc-xml</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>${maven-war-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
2018-07-12 12:34:54 +05:30
|
|
|
|
2015-07-23 16:54:23 +03:00
|
|
|
<!-- Spring -->
|
2018-01-14 04:26:24 +05:30
|
|
|
<org.springframework.version>5.0.2.RELEASE</org.springframework.version>
|
2019-04-07 00:19:58 +05:30
|
|
|
<spring-boot.version>1.5.10.RELEASE</spring-boot.version>
|
2016-12-06 16:10:47 +02:00
|
|
|
|
|
|
|
<!-- persistence -->
|
|
|
|
<mysql-connector-java.version>5.1.40</mysql-connector-java.version>
|
|
|
|
|
|
|
|
<!-- http -->
|
|
|
|
<httpcore.version>4.4.5</httpcore.version>
|
|
|
|
<httpclient.version>4.5.2</httpclient.version>
|
2015-07-23 16:54:23 +03:00
|
|
|
|
2016-12-06 16:10:47 +02:00
|
|
|
<!-- various -->
|
2018-07-08 21:13:41 +03:00
|
|
|
<hibernate-validator.version>6.0.10.Final</hibernate-validator.version>
|
2019-07-07 01:08:17 +05:30
|
|
|
<javax.el.version>3.0.1-b08</javax.el.version>
|
2017-05-12 20:32:54 +02:00
|
|
|
|
2016-12-06 16:10:47 +02:00
|
|
|
<!-- util -->
|
|
|
|
<guava.version>19.0</guava.version>
|
|
|
|
<geoip2.version>2.8.0</geoip2.version>
|
2015-07-23 16:54:23 +03:00
|
|
|
|
|
|
|
<!-- Maven plugins -->
|
2016-12-06 16:10:47 +02:00
|
|
|
<cargo-maven2-plugin.version>1.6.1</cargo-maven2-plugin.version>
|
2015-07-23 16:54:23 +03:00
|
|
|
|
|
|
|
</properties>
|
2013-04-29 21:43:51 +03:00
|
|
|
|
2018-01-14 04:26:24 +05:30
|
|
|
</project>
|