<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>top.jfunc.validation</groupId>
  <artifactId>validation-spring</artifactId>
  <version>1.0</version>
  <name>validation-spring</name>
  <description>针对Spring项目的基于注解+AOP的参数校验</description>
  <url>https://gitee.com/xxssyyyyssxx/validation</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>xxssyyyyssxx</id>
      <name>xiongshiyan</name>
      <email>xxssyyyyssxx@126.com</email>
    </developer>
  </developers>
  <scm>
    <connection>https://gitee.com/xxssyyyyssxx/validation.git</connection>
    <developerConnection>https://gitee.com/xxssyyyyssxx/validation.git</developerConnection>
    <url>https://gitee.com/xxssyyyyssxx/validation</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>top.jfunc.validation</groupId>
      <artifactId>validation-core</artifactId>
      <version>1.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>4.3.11.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjweaver</artifactId>
      <version>1.8.10</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-core</artifactId>
      <version>1.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-library</artifactId>
      <version>1.3</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
