Files
java-tutorials/spring-mobile/pom.xml
T

52 lines
1.7 KiB
XML
Raw Normal View History

2017-01-29 21:02:38 +05:30
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
2018-07-12 12:34:54 +05:30
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2018-04-26 18:07:47 +05:30
<modelVersion>4.0.0</modelVersion>
2017-01-29 21:02:38 +05:30
2017-05-14 18:01:35 +02:00
<groupId>com.baeldung</groupId>
<artifactId>spring-mobile</artifactId>
<version>1.0-SNAPSHOT</version>
<name>spring-mobile</name>
<packaging>war</packaging>
<url>http://maven.apache.org</url>
2018-04-26 18:07:47 +05:30
2017-05-14 18:01:35 +02:00
<parent>
2018-06-08 21:04:03 +03:00
<artifactId>parent-boot-1</artifactId>
2017-05-14 18:01:35 +02:00
<groupId>com.baeldung</groupId>
<version>0.0.1-SNAPSHOT</version>
2018-06-08 21:04:03 +03:00
<relativePath>../parent-boot-1</relativePath>
2017-05-14 18:01:35 +02:00
</parent>
2018-04-26 18:07:47 +05:30
2017-05-14 18:01:35 +02:00
<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>
</dependency>
<dependency>
2018-04-26 18:07:47 +05:30
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
2017-05-14 18:01:35 +02:00
</dependency>
</dependencies>
2018-04-26 18:07:47 +05:30
2017-01-29 21:02:38 +05:30
<repositories>
<repository>
<id>spring-releases</id>
<name>Spring Milestone Repository</name>
<url>https://repo.spring.io/libs-release</url>
</repository>
</repositories>
2018-04-26 18:07:47 +05:30
2017-01-29 21:02:38 +05:30
<pluginRepositories>
<pluginRepository>
<id>spring-releases</id>
<name>Spring Milestone Repository</name>
<url>https://repo.spring.io/libs-release</url>
</pluginRepository>
</pluginRepositories>
2018-04-26 18:07:47 +05:30
2017-01-29 21:02:38 +05:30
</project>