Daniel Qian | c06b902 | 2014-05-24 07:22:03 +0800 | [diff] [blame^] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <groupId>com.supwisdom.tutorial</groupId> |
| 6 | <artifactId>spring-tutorial</artifactId> |
| 7 | <version>1.0-SNAPSHOT</version> |
| 8 | <packaging>jar</packaging> |
| 9 | |
| 10 | <name>spring-tutorial</name> |
| 11 | <url>http://maven.apache.org</url> |
| 12 | |
| 13 | <parent> |
| 14 | <groupId>org.springframework.boot</groupId> |
| 15 | <artifactId>spring-boot-starter-parent</artifactId> |
| 16 | <version>1.0.2.RELEASE</version> |
| 17 | </parent> |
| 18 | |
| 19 | <properties> |
| 20 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 21 | <downloadJavadocs>true</downloadJavadocs> |
| 22 | <downloadSources>true</downloadSources> |
| 23 | </properties> |
| 24 | |
| 25 | |
| 26 | <dependencies> |
| 27 | <dependency> |
| 28 | <groupId>org.springframework.boot</groupId> |
| 29 | <artifactId>spring-boot-starter-web</artifactId> |
| 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>junit</groupId> |
| 33 | <artifactId>junit</artifactId> |
| 34 | <version>3.8.1</version> |
| 35 | <scope>test</scope> |
| 36 | </dependency> |
| 37 | </dependencies> |
| 38 | |
| 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
| 42 | <groupId>org.springframework.boot</groupId> |
| 43 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 44 | </plugin> |
| 45 | </plugins> |
| 46 | </build> |
| 47 | </project> |