<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.flyzy2005</groupId>
  <artifactId>daoutil</artifactId>
  <packaging>jar</packaging>
  <name>daoutil</name>
  <version>1.0.0</version>
  <url>http://www.flyzy2005.cn</url>
  <description>A daoUtil based on JdbcTemplate.</description>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <url>https://github.com/Flyzy2005/daoutil</url>
    <connection>git@github.com:Flyzy2005/daoutil.git</connection>
    <developerConnection>http://www.flyzy2005.cn</developerConnection>
  </scm>
  <developers>
    <developer>
      <name>fly</name>
      <email>flywf@whu.edu.cn</email>
      <url>http://www.flyzy2005.cn</url>
    </developer>
  </developers>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <springversion>4.3.3.RELEASE</springversion>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-jdbc</artifactId>
      <version>${springversion}</version>
    </dependency>

    <dependency>
      <groupId>com.alibaba</groupId>
      <artifactId>fastjson</artifactId>
      <version>1.2.31</version>
    </dependency>
  </dependencies>
</project>
