<?xml version="1.0"?>
<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.gitee.l0km</groupId>
    <artifactId>common</artifactId>
    <version>2.8.4</version>
  </parent>
  <artifactId>common-base2</artifactId>
  <name>common-base2</name>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>common-base</artifactId>
			<version>${project.version}</version>
			<scope>test</scope>
		</dependency>
		<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava</artifactId>
			<version>20.0</version>
		</dependency>
		<!-- fastjson, only for net.gdface.bean -->
		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>fastjson</artifactId>
			<version>1.2.83</version>
			<scope>provided</scope>
		</dependency>
		<!-- jackson,only for net.gdface.bean -->
	    <dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</artifactId>
            <version>2.8.10</version>
			<scope>provided</scope>
	    </dependency>
		<!-- sql2java,only for net.gdface.bean -->
		<dependency>
			<groupId>com.gitee.l0km</groupId>
			<artifactId>sql2java-base</artifactId>
			<version>3.9.0</version>
			<scope>provided</scope>
		</dependency>
		<!-- https://mvnrepository.com/artifact/me.champeau.openbeans/openbeans -->
		<dependency>
		    <groupId>me.champeau.openbeans</groupId>
		    <artifactId>openbeans</artifactId>
		    <version>1.0.2</version>
			<scope>provided</scope>
		</dependency>
		<!-- https://mvnrepository.com/artifact/eu.agno3.jcifs/jcifs-ng -->
		<dependency>
		    <groupId>eu.agno3.jcifs</groupId>
		    <artifactId>jcifs-ng</artifactId>
		    <version>2.1.2</version>
		    <scope>provided</scope>
		    <!-- 因为只用到jcifs-ng的netbios主机名解析功能,所以用不到bcprov-jdk15on提供的加密功能,在这里排除之-->
		    <exclusions>
		    	<exclusion>
					<groupId>org.bouncycastle</groupId>
					<artifactId>bcprov-jdk15on</artifactId>
		    	</exclusion>			
		    </exclusions>
		</dependency>
		<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>1.7.25</version>
			<scope>test</scope>
		</dependency>
  </dependencies>
</project>
