<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>

  <groupId>com.mini.framework</groupId>
  <artifactId>framework-web</artifactId>
  <version>1.5.7-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>framework-web</name>
  <url>http://doc.framework.xxggpt.com</url>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<junit.version>4.12</junit.version>
	</properties>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.8</source>
					<target>1.8</target>
					<encoding>utf8</encoding>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.4</version>
				<configuration>
					<testFailureIgnore>true</testFailureIgnore>
					<skip>true</skip>
					<skipTests>true</skipTests>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-archetype-plugin</artifactId>
				<version>2.2</version>
			</plugin>
			<!-- 源码插件 -->
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.1</version>
				<configuration>
					<attach>true</attach>
				</configuration>
				<executions>
					<execution>
						<phase>compile</phase>
							<goals>
								<goal>jar</goal>
							</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<dependencies>
			
			
		<dependency>
		    <groupId>commons-fileupload</groupId>
		    <artifactId>commons-fileupload</artifactId>
		    <version>1.4</version>
             <scope>provided</scope>  
		</dependency>
			
			
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
			<version>3.10</version>
             <scope>provided</scope>  
		</dependency>
		
		<dependency>
		    <groupId>commons-io</groupId>
		    <artifactId>commons-io</artifactId>
		    <version>2.7</version>
             <scope>provided</scope>  
		</dependency>
		
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		
         <dependency>  
             <groupId>org.apache.logging.log4j</groupId>  
             <artifactId>log4j-core</artifactId>  
             <version>2.8.2</version>
             <scope>provided</scope>  
         </dependency>
         
         <dependency>  
             <groupId>org.mybatis</groupId>  
             <artifactId>mybatis-spring</artifactId>  
             <version>1.3.0</version>
             <scope>provided</scope>  
         </dependency>
         
         <dependency>  
             <groupId>org.jsondoc</groupId>  
             <artifactId>jsondoc-core</artifactId>  
             <version>1.2.23</version>
             <scope>provided</scope>  
         </dependency>

		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>aspectjweaver</artifactId>
			<version>1.9.5</version>
			<scope>provided</scope>
		</dependency>

         
         <dependency>  
             <groupId>com.mini.framework</groupId>  
             <artifactId>framework-util</artifactId>
			 <version>1.6.2-SNAPSHOT</version>
             <scope>provided</scope>  
         </dependency>

         <dependency>
             <groupId>com.mini.framework</groupId>
             <artifactId>framework-model</artifactId>
			 <version>1.6.4-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         
         <!-- 这个引用是一个不正常的引用，后面要相办法去掉 auth 和 web 出现相互引用 -->
         <dependency>  
             <groupId>com.mini.framework</groupId>  
             <artifactId>framework-auth</artifactId>
			 <version>1.5.4-SNAPSHOT</version>
             <scope>provided</scope>  
         </dependency>
         
         <dependency>  
             <groupId>com.mini.framework</groupId>  
             <artifactId>framework-core</artifactId>
			 <version>1.5.4-SNAPSHOT</version>
             <scope>provided</scope>  
         </dependency>
         
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-tx</artifactId>
                <version>4.3.9.RELEASE</version>
                <scope>provided</scope>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-webmvc</artifactId>
                <version>4.3.9.RELEASE</version>
                <scope>provided</scope>
            </dependency>
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-web</artifactId>
                <version>4.3.9.RELEASE</version>
                <scope>provided</scope>
            </dependency>
            
           <dependency>
			    <groupId>com.google.code.gson</groupId>
			    <artifactId>gson</artifactId>
			    <version>2.8.8</version>
                <scope>provided</scope>
			</dependency>


			<dependency>
				<groupId>com.fasterxml.jackson.core</groupId>
				<artifactId>jackson-core</artifactId>
				<version>2.12.3</version>
				<scope>provided</scope>
			</dependency>

            
            <dependency>
				<groupId>javax.servlet</groupId>
				<artifactId>servlet-api</artifactId>
				<version>2.5</version>
				<scope>provided</scope>
			</dependency>

            <dependency>
				<groupId>org.apache.tomcat.embed</groupId>
				<artifactId>tomcat-embed-core</artifactId>
				<version>8.5.15</version>
				<scope>provided</scope>
			</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot</artifactId>
			<version>2.2.2.RELEASE</version>
			<scope>provided</scope>
		</dependency>


	</dependencies>
	<distributionManagement>
		<repository>
			<id>mini-releases</id>
			<name>正式库</name>
			<url>http://maven.aquke.com/nexus/content/repositories/releases/</url>
		</repository>
		<snapshotRepository>
			<id>mini-snapshots</id>
			<name>快照库</name>
			<url>http://maven.aquke.com/nexus/content/repositories/snapshots/</url>
		</snapshotRepository>
	</distributionManagement>
</project>