chenbo | f14869c | 2018-08-22 16:23:36 +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> |
| 6 | <groupId>com.supwisdom.leaveschool</groupId> |
| 7 | <artifactId>leaveschool-parent</artifactId> |
| 8 | <version>0.0.1-SNAPSHOT</version> |
| 9 | </parent> |
| 10 | |
| 11 | <groupId>com.supwisdom.leaveschool</groupId> |
| 12 | <artifactId>leaveschool-basics-data</artifactId> |
| 13 | <packaging>jar</packaging> |
| 14 | |
| 15 | |
| 16 | <dependencies> |
| 17 | |
| 18 | <dependency> |
| 19 | <groupId>com.supwisdom.leaveschool</groupId> |
| 20 | <artifactId>leaveschool-common</artifactId> |
| 21 | </dependency> |
| 22 | |
| 23 | <dependency> |
| 24 | <groupId>org.springframework.boot</groupId> |
| 25 | <artifactId>spring-boot-starter</artifactId> |
| 26 | </dependency> |
| 27 | |
| 28 | <!-- 微服务 健康监控 --> |
| 29 | <!-- <dependency> |
| 30 | <groupId>org.springframework.boot</groupId> |
| 31 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 32 | </dependency> --> |
| 33 | |
| 34 | <dependency> |
| 35 | <groupId>org.springframework.boot</groupId> |
| 36 | <artifactId>spring-boot-starter-web</artifactId> |
| 37 | </dependency> |
| 38 | |
| 39 | |
| 40 | <dependency> |
| 41 | <groupId>com.supwisdom.infras</groupId> |
| 42 | <artifactId>infras-mvc</artifactId> |
| 43 | </dependency> |
| 44 | |
| 45 | <dependency> |
| 46 | <groupId>com.supwisdom.infras</groupId> |
| 47 | <artifactId>infras-object-mapper</artifactId> |
| 48 | </dependency> |
| 49 | |
| 50 | <dependency> |
| 51 | <groupId>com.supwisdom.infras</groupId> |
| 52 | <artifactId>infras-i18n</artifactId> |
| 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>com.supwisdom.infras</groupId> |
| 57 | <artifactId>infras-lang</artifactId> |
| 58 | </dependency> |
| 59 | |
| 60 | <!-- |
| 61 | <dependency> |
| 62 | <groupId>com.supwisdom.infras</groupId> |
| 63 | <artifactId>infras-pinyin</artifactId> |
| 64 | </dependency> |
| 65 | --> |
| 66 | |
| 67 | <dependency> |
| 68 | <groupId>org.springframework.security</groupId> |
| 69 | <artifactId>spring-security-core</artifactId> |
| 70 | </dependency> |
| 71 | |
| 72 | |
| 73 | |
| 74 | |
| 75 | <dependency> |
| 76 | <groupId>mysql</groupId> |
| 77 | <artifactId>mysql-connector-java</artifactId> |
| 78 | <scope>runtime</scope> |
| 79 | </dependency> |
| 80 | |
| 81 | <!-- Test things --> |
| 82 | <dependency> |
| 83 | <groupId>org.testng</groupId> |
| 84 | <artifactId>testng</artifactId> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | |
| 88 | <dependency> |
| 89 | <groupId>org.springframework.boot</groupId> |
| 90 | <artifactId>spring-boot-starter-test</artifactId> |
| 91 | <scope>test</scope> |
| 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
| 95 | <groupId>com.h2database</groupId> |
| 96 | <artifactId>h2</artifactId> |
| 97 | <scope>test</scope> |
| 98 | </dependency> |
| 99 | |
| 100 | </dependencies> |
| 101 | |
| 102 | <build> |
| 103 | <plugins> |
| 104 | <plugin> |
| 105 | <groupId>org.apache.maven.plugins</groupId> |
| 106 | <artifactId>maven-compiler-plugin</artifactId> |
| 107 | </plugin> |
| 108 | <plugin> |
| 109 | <groupId>org.apache.maven.plugins</groupId> |
| 110 | <artifactId>maven-failsafe-plugin</artifactId> |
| 111 | </plugin> |
| 112 | <plugin> |
| 113 | <groupId>org.apache.maven.plugins</groupId> |
| 114 | <artifactId>maven-javadoc-plugin</artifactId> |
| 115 | </plugin> |
| 116 | <plugin> |
| 117 | <groupId>org.apache.maven.plugins</groupId> |
| 118 | <artifactId>maven-release-plugin</artifactId> |
| 119 | </plugin> |
| 120 | <plugin> |
| 121 | <groupId>org.jacoco</groupId> |
| 122 | <artifactId>jacoco-maven-plugin</artifactId> |
| 123 | </plugin> |
| 124 | </plugins> |
| 125 | </build> |
| 126 | |
| 127 | </project> |