|
@@ -13,6 +13,7 @@
|
|
|
|
|
|
<build>
|
|
<build>
|
|
<plugins>
|
|
<plugins>
|
|
|
|
+ <!--maven项目打包-->
|
|
<plugin>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
@@ -21,6 +22,31 @@
|
|
<layout>ZIP</layout>
|
|
<layout>ZIP</layout>
|
|
</configuration>
|
|
</configuration>
|
|
</plugin>
|
|
</plugin>
|
|
|
|
+
|
|
|
|
+ <!--mybatis.generator maven插件-->
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.mybatis.generator</groupId>
|
|
|
|
+ <artifactId>mybatis-generator-maven-plugin</artifactId>
|
|
|
|
+ <version>1.3.7</version>
|
|
|
|
+
|
|
|
|
+ <configuration>
|
|
|
|
+ <configurationFile>src/main/resources/mybatis-generator.xml</configurationFile>
|
|
|
|
+ <overwrite>true</overwrite>
|
|
|
|
+ </configuration>
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
+ <version>8.0.16</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.itfsw</groupId>
|
|
|
|
+ <artifactId>mybatis-generator-plugin</artifactId>
|
|
|
|
+ <version>1.3.7</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+ </plugin>
|
|
</plugins>
|
|
</plugins>
|
|
</build>
|
|
</build>
|
|
|
|
|
|
@@ -63,14 +89,67 @@
|
|
<version>3.3.7</version>
|
|
<version>3.3.7</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
- <!--dao层mybatis-->
|
|
|
|
|
|
+
|
|
|
|
+ <!-- lombok -->
|
|
<dependency>
|
|
<dependency>
|
|
- <groupId>com.alvin.springboot</groupId>
|
|
|
|
- <artifactId>springboot-dao</artifactId>
|
|
|
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
|
+ <version>1.18.4</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.google.code.gson</groupId>
|
|
|
|
+ <artifactId>gson</artifactId>
|
|
|
|
+ <version>2.8.5</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
|
+ <version>3.8</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
|
+ <version>2.4</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!--httpClient-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
|
+ <artifactId>httpclient</artifactId>
|
|
|
|
+ <version>4.5.3</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!--email-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>javax.mail</groupId>
|
|
|
|
+ <artifactId>javax.mail-api</artifactId>
|
|
|
|
+ <version>1.6.2</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.sun.mail</groupId>
|
|
|
|
+ <artifactId>javax.mail</artifactId>
|
|
|
|
+ <version>1.6.2</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!--mybatis-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
+ <version>1.3.2</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
+ <version>1.1.10</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!--mysql-->
|
|
<dependency>
|
|
<dependency>
|
|
- <groupId>com.alvin.springboot</groupId>
|
|
|
|
- <artifactId>springboot-common</artifactId>
|
|
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
+ <version>8.0.16</version>
|
|
</dependency>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencies>
|
|
|
|
|