- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.2.2.RELEASE</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <groupId>com.ssjl.zhaobiao.guizhou</groupId>
- <!--artifactId>dianxin-guizhou-forward</artifactId -->
- <artifactId>gd202101</artifactId>
- <!--version>telpo0.0.2</version -->
- <name>gd202101</name>
- <description>convert protocol between ssjl and dianxin guizhou</description>
-
- <properties>
- <java.version>1.8</java.version>
- </properties>
-
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>2.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-quartz</artifactId>
- <version>2.1.5.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- <version>2.3.1</version>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <groupId>org.junit.vintage</groupId>
- <artifactId>junit-vintage-engine</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.eclipse.paho/org.eclipse.paho.client.mqttv3 -->
- <!--<dependency>-->
- <!--<groupId>org.eclipse.paho</groupId>-->
- <!--<artifactId>org.eclipse.paho.client.mqttv3</artifactId>-->
- <!--<version>1.2.2</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.58</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.8.1</version>
- </dependency>
-
- <!--<dependency>-->
- <!--<groupId>com.aliyun</groupId>-->
- <!--<artifactId>aliyun-java-sdk-core</artifactId>-->
- <!--<version>4.4.9</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>com.aliyun</groupId>-->
- <!--<artifactId>aliyun-java-sdk-linkface</artifactId>-->
- <!--<version>1.2.0</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>com.google.code.gson</groupId>-->
- <!--<artifactId>gson</artifactId>-->
- <!--<version>2.8.5</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp</artifactId>
- <version>4.2.2</version>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>30.1-jre</version>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>com.google.guava</groupId>-->
- <!--<artifactId>guava</artifactId>-->
- <!--<version>19.0</version>-->
- <!--<scope>test</scope>-->
- <!--</dependency>-->
- <!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
- <!--<dependency>-->
- <!--<groupId>redis.clients</groupId>-->
- <!--<artifactId>jedis</artifactId>-->
- <!--<version>3.3.0</version>-->
- <!--</dependency>-->
- <!-- https://mvnrepository.com/artifact/com.rabbitmq/amqp-client -->
- <!--<dependency>-->
- <!--<groupId>com.rabbitmq</groupId>-->
- <!--<artifactId>amqp-client</artifactId>-->
- <!--<version>5.9.0</version>-->
- <!--</dependency>-->
- <!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
- <!--<dependency>-->
- <!--<groupId>io.netty</groupId>-->
- <!--<artifactId>netty-all</artifactId>-->
- <!--<version>4.1.56.Final</version>-->
- <!--</dependency>-->
-
- <!--<!– https://mvnrepository.com/artifact/com.itextpdf/itext7-core –>-->
- <!--<dependency>-->
- <!--<groupId>com.itextpdf</groupId>-->
- <!--<artifactId>itext7-core</artifactId>-->
- <!--<version>7.1.11</version>-->
- <!--<type>pom</type>-->
- <!--</dependency>-->
- <!--<!– https://mvnrepository.com/artifact/com.itextpdf/font-asian –>-->
- <!--<dependency>-->
- <!--<groupId>com.itextpdf</groupId>-->
- <!--<artifactId>font-asian</artifactId>-->
- <!--<version>7.1.11</version>-->
- <!--<scope>test</scope>-->
- <!--</dependency>-->
-
-
-
-
- </dependencies>
-
- <build>
- <finalName>${project.artifactId}</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <!--fork : 使用 devtools生效-->
- <fork>true</fork>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
- </goals>
- </execution>
- </executions>
- </plugin>
- <!--mybatis自动生成代码插件-->
- <plugin>
- <groupId>org.mybatis.generator</groupId>
- <artifactId>mybatis-generator-maven-plugin</artifactId>
- <version>1.3.7</version>
- <configuration>
- <!-- 是否覆盖,true表示会替换生成的JAVA文件,false则不覆盖 -->
- <overwrite>false</overwrite>
- </configuration>
- <dependencies>
- <!--mysql驱动包-->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>8.0.18</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis.generator</groupId>
- <artifactId>mybatis-generator-core</artifactId>
- <version>1.3.7</version>
- </dependency>
- </dependencies>
-
- </plugin>
- </plugins>
- </build>
-
- </project>
|