79 lines
2.7 KiB
XML
79 lines
2.7 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.css.ggzc</groupId>
|
|
<artifactId>ggzc-framework-dependencies</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>txw-common</artifactId>
|
|
<groupId>com.css.txw</groupId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<name>${project.artifactId}</name>
|
|
<description>txw-common</description>
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>3.3.1</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<!--必须与 settings.xml 的 id 一致-->
|
|
<id>codingcorp-qyd_repo-mvn_public</id>
|
|
<name>mvn_public</name>
|
|
<url>http://codingcorp-maven.pkg.codingstd.xc01.cloud.sat.tax/repository/qyd_repo/mvn_public/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.css.ggzc</groupId>
|
|
<artifactId>ggzc-framework-starter</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<dependencies>
|
|
|
|
<!-- Web 相关 -->
|
|
<dependency>
|
|
<groupId>com.css.ggzc</groupId>
|
|
<artifactId>ggzc-framework-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.css.ggzc</groupId>
|
|
<artifactId>ggzc-framework-starter-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.css.ggzc</groupId>
|
|
<artifactId>ggzc-framework-starter-cache</artifactId>
|
|
</dependency>
|
|
<!-- DB 相关 -->
|
|
<dependency>
|
|
<groupId>com.css.ggzc</groupId>
|
|
<artifactId>ggzc-framework-starter-mybatis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.css.ggzc</groupId>
|
|
<artifactId>ggzc-framework-starter-cache</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|