|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <groupId>com.monkey01</groupId> |
| 8 | + <artifactId>MkFramework</artifactId> |
| 9 | + <version>1.0-SNAPSHOT</version> |
| 10 | + |
| 11 | + <parent> |
| 12 | + <groupId>org.springframework.boot</groupId> |
| 13 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 14 | + <version>2.0.3.RELEASE</version> |
| 15 | + </parent> |
| 16 | + |
| 17 | + <properties> |
| 18 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 19 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 20 | + <java.version>1.8</java.version> |
| 21 | + <mybatisplus.spring.boot.version>1.0.5</mybatisplus.spring.boot.version> |
| 22 | + <mybatisplus.version>2.2.0</mybatisplus.version> |
| 23 | + <mysql.version>5.1.38</mysql.version> |
| 24 | + <mssql.version>4.0</mssql.version> |
| 25 | + <oracle.version>11.2.0.3</oracle.version> |
| 26 | + <druid.version>1.1.10</druid.version> |
| 27 | + <commons.lang.version>2.6</commons.lang.version> |
| 28 | + <commons.fileupload.version>1.2.2</commons.fileupload.version> |
| 29 | + <commons.io.version>2.5</commons.io.version> |
| 30 | + <commons.codec.version>1.10</commons.codec.version> |
| 31 | + <commons.configuration.version>1.10</commons.configuration.version> |
| 32 | + <jwt.version>0.7.0</jwt.version> |
| 33 | + <swagger.version>2.7.0</swagger.version> |
| 34 | + <fastjson.version>1.2.47</fastjson.version> |
| 35 | + <hutool.version>4.1.1</hutool.version> |
| 36 | + <gson.version>2.8.2</gson.version> |
| 37 | + |
| 38 | + </properties> |
| 39 | + |
| 40 | + <dependencies> |
| 41 | + <dependency> |
| 42 | + <groupId>org.springframework.boot</groupId> |
| 43 | + <artifactId>spring-boot-starter-test</artifactId> |
| 44 | + <scope>test</scope> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>org.springframework.boot</groupId> |
| 48 | + <artifactId>spring-boot-starter-web</artifactId> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>org.springframework.boot</groupId> |
| 52 | + <artifactId>spring-boot-starter-aop</artifactId> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.springframework</groupId> |
| 56 | + <artifactId>spring-context-support</artifactId> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>org.springframework.boot</groupId> |
| 60 | + <artifactId>spring-boot-starter-data-redis</artifactId> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>org.springframework.boot</groupId> |
| 64 | + <artifactId>spring-boot-configuration-processor</artifactId> |
| 65 | + <optional>true</optional> |
| 66 | + </dependency> |
| 67 | + <!--<dependency>--> |
| 68 | + <!--<groupId>org.springframework.boot</groupId>--> |
| 69 | + <!--<artifactId>spring-boot-devtools</artifactId>--> |
| 70 | + <!--<optional>true</optional>--> |
| 71 | + <!--</dependency>--> |
| 72 | + <!--<dependency>--> |
| 73 | + <!--<groupId>com.baomidou</groupId>--> |
| 74 | + <!--<artifactId>mybatisplus-spring-boot-starter</artifactId>--> |
| 75 | + <!--<version>${mybatisplus.spring.boot.version}</version>--> |
| 76 | + <!--</dependency>--> |
| 77 | + <!--<dependency>--> |
| 78 | + <!--<groupId>com.baomidou</groupId>--> |
| 79 | + <!--<artifactId>mybatis-plus</artifactId>--> |
| 80 | + <!--<version>${mybatisplus.version}</version>--> |
| 81 | + <!--</dependency>--> |
| 82 | + <!--<dependency>--> |
| 83 | + <!--<groupId>mysql</groupId>--> |
| 84 | + <!--<artifactId>mysql-connector-java</artifactId>--> |
| 85 | + <!--<version>${mysql.version}</version>--> |
| 86 | + <!--</dependency>--> |
| 87 | + <!--oracle驱动--> |
| 88 | + <!--<dependency>--> |
| 89 | + <!--<groupId>com.oracle</groupId>--> |
| 90 | + <!--<artifactId>ojdbc6</artifactId>--> |
| 91 | + <!--<version>${oracle.version}</version>--> |
| 92 | + <!--</dependency>--> |
| 93 | + <!--postgresql驱动--> |
| 94 | + <!--<dependency>--> |
| 95 | + <!--<groupId>org.postgresql</groupId>--> |
| 96 | + <!--<artifactId>postgresql</artifactId>--> |
| 97 | + <!--</dependency>--> |
| 98 | + <!--<dependency>--> |
| 99 | + <!--<groupId>com.alibaba</groupId>--> |
| 100 | + <!--<artifactId>druid-spring-boot-starter</artifactId>--> |
| 101 | + <!--<version>${druid.version}</version>--> |
| 102 | + <!--</dependency>--> |
| 103 | + <dependency> |
| 104 | + <groupId>commons-lang</groupId> |
| 105 | + <artifactId>commons-lang</artifactId> |
| 106 | + <version>${commons.lang.version}</version> |
| 107 | + </dependency> |
| 108 | + <dependency> |
| 109 | + <groupId>commons-io</groupId> |
| 110 | + <artifactId>commons-io</artifactId> |
| 111 | + <version>${commons.io.version}</version> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>commons-codec</groupId> |
| 115 | + <artifactId>commons-codec</artifactId> |
| 116 | + <version>${commons.codec.version}</version> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>commons-configuration</groupId> |
| 120 | + <artifactId>commons-configuration</artifactId> |
| 121 | + <version>${commons.configuration.version}</version> |
| 122 | + </dependency> |
| 123 | + <dependency> |
| 124 | + <groupId>io.jsonwebtoken</groupId> |
| 125 | + <artifactId>jjwt</artifactId> |
| 126 | + <version>${jwt.version}</version> |
| 127 | + </dependency> |
| 128 | + <dependency> |
| 129 | + <groupId>io.springfox</groupId> |
| 130 | + <artifactId>springfox-swagger2</artifactId> |
| 131 | + <version>${swagger.version}</version> |
| 132 | + </dependency> |
| 133 | + <dependency> |
| 134 | + <groupId>io.springfox</groupId> |
| 135 | + <artifactId>springfox-swagger-ui</artifactId> |
| 136 | + <version>${swagger.version}</version> |
| 137 | + </dependency> |
| 138 | + <dependency> |
| 139 | + <groupId>com.alibaba</groupId> |
| 140 | + <artifactId>fastjson</artifactId> |
| 141 | + <version>${fastjson.version}</version> |
| 142 | + </dependency> |
| 143 | + <dependency> |
| 144 | + <groupId>cn.hutool</groupId> |
| 145 | + <artifactId>hutool-all</artifactId> |
| 146 | + <version>${hutool.version}</version> |
| 147 | + </dependency> |
| 148 | + <dependency> |
| 149 | + <groupId>com.google.code.gson</groupId> |
| 150 | + <artifactId>gson</artifactId> |
| 151 | + <version>${gson.version}</version> |
| 152 | + </dependency> |
| 153 | + </dependencies> |
| 154 | + |
| 155 | + <build> |
| 156 | + <finalName>${project.artifactId}</finalName> |
| 157 | + <extensions> |
| 158 | + <extension> |
| 159 | + <groupId>org.apache.maven.wagon</groupId> |
| 160 | + <artifactId>wagon-ssh</artifactId> |
| 161 | + <version>2.8</version> |
| 162 | + </extension> |
| 163 | + </extensions> |
| 164 | + <plugins> |
| 165 | + <plugin> |
| 166 | + <groupId>org.springframework.boot</groupId> |
| 167 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 168 | + <configuration> |
| 169 | + <fork>true</fork> |
| 170 | + </configuration> |
| 171 | + </plugin> |
| 172 | + <!-- 跳过单元测试 --> |
| 173 | + <plugin> |
| 174 | + <groupId>org.apache.maven.plugins</groupId> |
| 175 | + <artifactId>maven-surefire-plugin</artifactId> |
| 176 | + <configuration> |
| 177 | + <skipTests>true</skipTests> |
| 178 | + </configuration> |
| 179 | + </plugin> |
| 180 | + </plugins> |
| 181 | + </build> |
| 182 | + |
| 183 | + <repositories> |
| 184 | + <repository> |
| 185 | + <id>public</id> |
| 186 | + <name>aliyun nexus</name> |
| 187 | + <url>http://maven.aliyun.com/nexus/content/groups/public/</url> |
| 188 | + <releases> |
| 189 | + <enabled>true</enabled> |
| 190 | + </releases> |
| 191 | + </repository> |
| 192 | + </repositories> |
| 193 | + <pluginRepositories> |
| 194 | + <pluginRepository> |
| 195 | + <id>public</id> |
| 196 | + <name>aliyun nexus</name> |
| 197 | + <url>http://maven.aliyun.com/nexus/content/groups/public/</url> |
| 198 | + <releases> |
| 199 | + <enabled>true</enabled> |
| 200 | + </releases> |
| 201 | + <snapshots> |
| 202 | + <enabled>false</enabled> |
| 203 | + </snapshots> |
| 204 | + </pluginRepository> |
| 205 | + </pluginRepositories> |
| 206 | + |
| 207 | +</project> |
0 commit comments