2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0"?>
|
2021-08-02 14:57:15 -04:00
|
|
|
<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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-mobile</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>spring-mobile</name>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2020-05-14 02:43:53 -04:00
|
|
|
<artifactId>parent-boot-2</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2020-05-14 02:43:53 -04:00
|
|
|
<relativePath>../parent-boot-2</relativePath>
|
2019-10-31 21:43:47 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.mobile</groupId>
|
|
|
|
<artifactId>spring-mobile-device</artifactId>
|
2020-05-14 02:43:53 -04:00
|
|
|
<version>${spring-mobile-device.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2021-05-14 08:14:24 -04:00
|
|
|
|
2020-05-14 02:43:53 -04:00
|
|
|
<properties>
|
2021-05-16 07:10:29 -04:00
|
|
|
<spring-mobile-device.version>1.1.5.RELEASE</spring-mobile-device.version>
|
2020-05-14 02:43:53 -04:00
|
|
|
</properties>
|
2021-05-14 08:14:24 -04:00
|
|
|
|
|
|
|
</project>
|