<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>cn.dev33</groupId>
    <artifactId>sa-token</artifactId>
    <packaging>jar</packaging>
    <version>1.4.0</version>

	<!-- 项目介绍 -->
	<name>sa-token</name>
	<description>A Java Web authority authentication framework, powerful, simple and easy to use</description>
	<url>http://sa-token.dev33.cn/</url>
	
	<!-- 开源协议 -->
	<licenses>
		<license>
			<name>The ApacheSoftware License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	
	<!-- 仓库信息 -->
	<scm>
		<tag>master</tag>
		<url>https://github.com/click33/sa-token.git</url>
		<connection>scm:git:https://github.com/click33/sa-token.git</connection>
		<developerConnection>scm:git:https://github.com/click33/sa-token.git</developerConnection>
	</scm>
	<developers>
		<developer>
			<name>shengzhang</name>
			<email>2393584716@qq.com</email>
		</developer>
	</developers>


	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<dependencies>
		<!-- springboot依赖 -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
			<version>2.0.0.RELEASE</version>
		</dependency>
	</dependencies>


	<build>
	   <plugins>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-compiler-plugin</artifactId>
			<version>3.2</version>
			<configuration>
				<source>1.8</source>
				<target>1.8</target>
				<encoding>UTF-8</encoding>
			</configuration>
		</plugin>
	   </plugins>
	</build>



</project>