Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +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 | <parent> |
刘洪青 | 9cbbda2 | 2018-07-19 17:28:37 +0800 | [diff] [blame] | 6 | <groupId>com.supwisdom.leaveschool</groupId> |
| 7 | <artifactId>samples-parent</artifactId> |
| 8 | <version>0.0.1-SNAPSHOT</version> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 9 | </parent> |
| 10 | |
| 11 | <groupId>com.supwisdom.leaveschool</groupId> |
| 12 | <artifactId>sample-foo</artifactId> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 13 | <packaging>jar</packaging> |
| 14 | |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 15 | <dependencies> |
| 16 | |
| 17 | <dependency> |
| 18 | <groupId>org.springframework.boot</groupId> |
| 19 | <artifactId>spring-boot-starter</artifactId> |
| 20 | </dependency> |
| 21 | |
| 22 | <dependency> |
| 23 | <groupId>org.springframework.boot</groupId> |
| 24 | <artifactId>spring-boot-starter-web</artifactId> |
| 25 | </dependency> |
| 26 | |
| 27 | <dependency> |
| 28 | <groupId>org.springframework.boot</groupId> |
Daniel Qian | 315ccce | 2018-07-20 10:09:00 +0800 | [diff] [blame] | 29 | <artifactId>spring-boot-starter-json</artifactId> |
| 30 | </dependency> |
| 31 | |
| 32 | <dependency> |
| 33 | <groupId>org.springframework.boot</groupId> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 34 | <artifactId>spring-boot-starter-thymeleaf</artifactId> |
| 35 | </dependency> |
| 36 | |
| 37 | <dependency> |
| 38 | <groupId>com.supwisdom.infras</groupId> |
| 39 | <artifactId>infras-lang</artifactId> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
| 43 | <groupId>com.supwisdom.infras</groupId> |
| 44 | <artifactId>infras-mvc</artifactId> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 45 | </dependency> |
| 46 | |
Daniel Qian | 6c6014c | 2018-07-18 11:32:42 +0800 | [diff] [blame] | 47 | <dependency> |
| 48 | <groupId>com.supwisdom.infras</groupId> |
| 49 | <artifactId>infras-object-mapper</artifactId> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>com.supwisdom.infras</groupId> |
| 54 | <artifactId>infras-i18n</artifactId> |
| 55 | </dependency> |
| 56 | |
| 57 | <dependency> |
| 58 | <groupId>com.supwisdom.infras</groupId> |
| 59 | <artifactId>infras-pinyin</artifactId> |
| 60 | </dependency> |
Daniel Qian | f6b89ce | 2018-07-17 18:40:57 +0800 | [diff] [blame] | 61 | |
| 62 | <!-- Test things --> |
| 63 | <dependency> |
| 64 | <groupId>org.testng</groupId> |
| 65 | <artifactId>testng</artifactId> |
| 66 | <scope>test</scope> |
| 67 | </dependency> |
| 68 | |
| 69 | <dependency> |
| 70 | <groupId>org.springframework.boot</groupId> |
| 71 | <artifactId>spring-boot-starter-test</artifactId> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | |
| 75 | </dependencies> |
| 76 | |
| 77 | <build> |
| 78 | <plugins> |
| 79 | <plugin> |
| 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-compiler-plugin</artifactId> |
| 82 | </plugin> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.maven.plugins</groupId> |
| 85 | <artifactId>maven-failsafe-plugin</artifactId> |
| 86 | </plugin> |
| 87 | <plugin> |
| 88 | <groupId>org.apache.maven.plugins</groupId> |
| 89 | <artifactId>maven-javadoc-plugin</artifactId> |
| 90 | </plugin> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.maven.plugins</groupId> |
| 93 | <artifactId>maven-release-plugin</artifactId> |
| 94 | </plugin> |
| 95 | <plugin> |
| 96 | <groupId>org.jacoco</groupId> |
| 97 | <artifactId>jacoco-maven-plugin</artifactId> |
| 98 | </plugin> |
| 99 | </plugins> |
| 100 | </build> |
| 101 | |
| 102 | </project> |