<?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.jxdinfo.hussar</groupId>
		<artifactId>hussar-parent</artifactId>
		<version>9.4.7</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

	<artifactId>hussar-common</artifactId>
	<packaging>jar</packaging>
	<name>${project.artifactId}</name>

	<description>基础框架的公共类库</description>
	<dependencies>
		<dependency>
			<groupId>com.jxdinfo.hussar</groupId>
			<artifactId>hussar-core</artifactId>
		</dependency>

		<dependency>
			<groupId>com.jxdinfo.hussar.support.audit</groupId>
			<artifactId>hussar-audit-starter</artifactId>
		</dependency>

		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
		</dependency>

		<dependency>
			<groupId>commons-codec</groupId>
			<artifactId>commons-codec</artifactId>
		</dependency>
 		<dependency>
			<groupId>com.jxdinfo.hussar</groupId>
			<artifactId>hussar-encrypt-sm</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-autoconfigure</artifactId>
		</dependency>


		<dependency>
			<groupId>com.jxdinfo.hussar</groupId>
			<artifactId>hussar-otp</artifactId>
		</dependency>

		<!--认证依赖 -->
		<dependency>
			<groupId>com.jxdinfo.hussar.support.security</groupId>
			<artifactId>hussar-security-integration-authentication</artifactId>
		</dependency>

		<!--传输加密依赖 -->
		<dependency>
			<groupId>com.jxdinfo.hussar.support.secure</groupId>
			<artifactId>hussar-secure-encrypt-starter</artifactId>
		</dependency>

		<!--防重放依赖 -->
		<dependency>
			<groupId>com.jxdinfo.hussar.support.secure</groupId>
			<artifactId>hussar-secure-anti-replay-starter</artifactId>
		</dependency>

		<!--鉴权依赖 -->
		<dependency>
			<groupId>com.jxdinfo.hussar.support.security</groupId>
			<artifactId>hussar-security-integration-authority</artifactId>
		</dependency>

		<dependency>
			<groupId>com.jxdinfo.hussar.support</groupId>
			<artifactId>hussar-platform-core</artifactId>
			<exclusions>
				<exclusion>
					<groupId>com.jxdinfo.hussar.support.log</groupId>
					<artifactId>hussar-log-logback</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

		<dependency>
			<groupId>com.jxdinfo.hussar.support</groupId>
			<artifactId>hussar-mp-starter</artifactId>
		</dependency>
		<dependency>
			<groupId>com.jxdinfo.hussar.support.transaction</groupId>
			<artifactId>hussar-transaction-starter</artifactId>
		</dependency>
		<dependency>
			<groupId>com.jxdinfo.hussar.support</groupId>
			<artifactId>hussar-support-datasource</artifactId>
		</dependency>
		<dependency>
			<groupId>com.jxdinfo.hussar.support</groupId>
			<artifactId>hussar-support-cache</artifactId>
		</dependency>
		<dependency>
			<groupId>com.jxdinfo.hussar.support</groupId>
			<artifactId>hussar-support-serialization</artifactId>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>javax.servlet-api</artifactId>
		</dependency>

		<dependency>
			<groupId>com.jxdinfo.hussar.support</groupId>
			<artifactId>hussar-mp-plugin-encrypt</artifactId>
		</dependency>

		<dependency>
			<groupId>com.jxdinfo.hussar.support</groupId>
			<artifactId>hussar-mp-plugin-sensitive</artifactId>
		</dependency>

		<!-- 多线程组件 -->
		<dependency>
			<groupId>com.jxdinfo.hussar.support</groupId>
			<artifactId>hussar-thread-starter</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-validation</artifactId>
		</dependency>

	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
			</plugin>
		</plugins>
		<resources>
			<resource>
				<directory>${project.basedir}/src/main/resources</directory>
				<filtering>true</filtering>
			</resource>
			<resource>
				<directory>${project.basedir}/src/main/java</directory>
				<targetPath>${project.build.outputDirectory}/</targetPath>
				<includes>
					<include>**/*.xml</include>
				</includes>
				<filtering>false</filtering>
			</resource>
		</resources>
	</build>


</project>
