2 changed files with 218 additions and 0 deletions
@ -0,0 +1,60 @@ |
|||||
|
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
|
|
||||
|
<parent> |
||||
|
<groupId>com.yxt</groupId> |
||||
|
<artifactId>yxt-parent</artifactId> |
||||
|
<version>0.0.1</version> |
||||
|
<relativePath/> |
||||
|
</parent> |
||||
|
<modelVersion>4.0.0</modelVersion> |
||||
|
|
||||
|
<artifactId>supervise-rms-api</artifactId> |
||||
|
<groupId>com.yxt.supervise</groupId> |
||||
|
<version>0.0.1-SNAPSHOT</version> |
||||
|
|
||||
|
|
||||
|
|
||||
|
<dependencies> |
||||
|
<dependency> |
||||
|
<groupId>com.yxt</groupId> |
||||
|
<artifactId>yxt-common-core</artifactId> |
||||
|
<version>0.0.1</version> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>org.springframework.cloud</groupId> |
||||
|
<artifactId>spring-cloud-starter-openfeign</artifactId> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>org.projectlombok</groupId> |
||||
|
<artifactId>lombok</artifactId> |
||||
|
<version>1.18.24</version> |
||||
|
<optional>true</optional> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.baomidou</groupId> |
||||
|
<artifactId>mybatis-plus-boot-starter</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.baomidou</groupId> |
||||
|
<artifactId>mybatis-plus-annotation</artifactId> |
||||
|
</dependency> |
||||
|
</dependencies> |
||||
|
|
||||
|
<distributionManagement> |
||||
|
<repository> |
||||
|
<id>nexus-releases</id> |
||||
|
<url>http://172.18.0.3:8081/repository/yxt-mvn-releases/</url> |
||||
|
</repository> |
||||
|
<snapshotRepository> |
||||
|
<id>nexus-snapshots</id> |
||||
|
<url>http://172.18.0.3:8081/repository/yxt-mvn-snapshot/</url> |
||||
|
</snapshotRepository> |
||||
|
</distributionManagement> |
||||
|
|
||||
|
|
||||
|
</project> |
@ -0,0 +1,158 @@ |
|||||
|
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
|
<parent> |
||||
|
<groupId>com.yxt</groupId> |
||||
|
<artifactId>yxt-parent</artifactId> |
||||
|
<version>0.0.1</version> |
||||
|
<relativePath/> |
||||
|
</parent> |
||||
|
<modelVersion>4.0.0</modelVersion> |
||||
|
|
||||
|
<artifactId>supervise-rms-biz</artifactId> |
||||
|
<groupId>com.yxt.supervise</groupId> |
||||
|
<version>0.0.1</version> |
||||
|
|
||||
|
<dependencies> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>com.yxt</groupId> |
||||
|
<artifactId>yxt-common-base</artifactId> |
||||
|
<version>0.0.1</version> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<artifactId>supervise-rms-api</artifactId> |
||||
|
<groupId>com.yxt.supervise</groupId> |
||||
|
<version>0.0.1-SNAPSHOT</version> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>com.alibaba.cloud</groupId> |
||||
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
||||
|
</dependency> |
||||
|
<!--mysql--> |
||||
|
<dependency> |
||||
|
<groupId>mysql</groupId> |
||||
|
<artifactId>mysql-connector-java</artifactId> |
||||
|
<scope>runtime</scope> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>junit</groupId> |
||||
|
<artifactId>junit</artifactId> |
||||
|
<scope>compile</scope> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>javax.servlet</groupId> |
||||
|
<artifactId>javax.servlet-api</artifactId> |
||||
|
<version>4.0.1</version> |
||||
|
<scope>compile</scope> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.github.xiaoymin</groupId> |
||||
|
<artifactId>knife4j-spring-boot-starter</artifactId> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>net.dongliu</groupId> |
||||
|
<artifactId>apk-parser</artifactId> |
||||
|
<version>2.6.10</version> |
||||
|
</dependency> |
||||
|
|
||||
|
<dependency> |
||||
|
<groupId>org.projectlombok</groupId> |
||||
|
<artifactId>lombok</artifactId> |
||||
|
<version>1.18.24</version> |
||||
|
<optional>true</optional> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>javax.xml</groupId> |
||||
|
<artifactId>jaxb-impl</artifactId> |
||||
|
<version>2.1</version> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>javax.xml</groupId> |
||||
|
<artifactId>jaxb-api</artifactId> |
||||
|
<version>2.1</version> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>javax.xml.ws</groupId> |
||||
|
<artifactId>jaxws-api</artifactId> |
||||
|
<version>2.3.1</version> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>javax.jws</groupId> |
||||
|
<artifactId>javax.jws-api</artifactId> |
||||
|
<version>1.1</version> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>com.sun.xml.bind</groupId> |
||||
|
<artifactId>jaxb-core</artifactId> |
||||
|
<version>2.3.0.1</version> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>javax.xml.soap</groupId> |
||||
|
<artifactId>javax.xml.soap-api</artifactId> |
||||
|
<version>1.4.0</version> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>javax.activation</groupId> |
||||
|
<artifactId>activation</artifactId> |
||||
|
<version>1.1.1</version> |
||||
|
</dependency> |
||||
|
<!-- 读取解析CSV文件 --> |
||||
|
<dependency> |
||||
|
<groupId>net.sourceforge.javacsv</groupId> |
||||
|
<artifactId>javacsv</artifactId> |
||||
|
<version>2.0</version> |
||||
|
</dependency> |
||||
|
<dependency> |
||||
|
<groupId>de.siegmar</groupId> |
||||
|
<artifactId>fastcsv</artifactId> |
||||
|
<version>2.2.1</version> |
||||
|
</dependency> |
||||
|
<!-- <dependency>--> |
||||
|
<!-- <groupId>org.apache.poi</groupId>--> |
||||
|
<!-- <artifactId>poi-ooxml</artifactId>--> |
||||
|
<!-- <version>5.2.3</version>--> |
||||
|
<!-- </dependency>--> |
||||
|
<!-- <dependency>--> |
||||
|
<!-- <groupId>xerces</groupId>--> |
||||
|
<!-- <artifactId>xercesImpl</artifactId>--> |
||||
|
<!-- <version>2.12.2</version>--> |
||||
|
<!-- </dependency>--> |
||||
|
</dependencies> |
||||
|
|
||||
|
<build> |
||||
|
<plugins> |
||||
|
<plugin> |
||||
|
<groupId>org.springframework.boot</groupId> |
||||
|
<artifactId>spring-boot-maven-plugin</artifactId> |
||||
|
<version>2.5.6</version> |
||||
|
<executions> |
||||
|
<execution> |
||||
|
<goals> |
||||
|
<goal>repackage</goal> |
||||
|
</goals> |
||||
|
</execution> |
||||
|
</executions> |
||||
|
</plugin> |
||||
|
</plugins> |
||||
|
<resources> |
||||
|
<resource> |
||||
|
<directory>src/main/java</directory> |
||||
|
<includes> |
||||
|
<include>**/*Mapper.xml</include> |
||||
|
</includes> |
||||
|
</resource> |
||||
|
<resource> |
||||
|
<directory>src/main/resources</directory> |
||||
|
<includes> |
||||
|
<include>**/*.*</include> |
||||
|
</includes> |
||||
|
<filtering>false</filtering> |
||||
|
</resource> |
||||
|
</resources> |
||||
|
</build> |
||||
|
|
||||
|
</project> |
Loading…
Reference in new issue