<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.321wing.wingframework</groupId>
        <artifactId>wingframework-parent</artifactId>
        <version>0.0.1</version>
    </parent>
    <artifactId>wingframework-test</artifactId>
    <name>wingframework-test</name>
    <packaging>jar</packaging>
    <description>wing测试支持模块</description>
    <url>http://maven.apache.org</url>
    <licenses>
        <license>
            <name>The "BSD license</name>
            <url>http://opensource.org/licenses/BSD-3-Clause</url>
        </license>
    </licenses>
    <developers>
        <developer>
            <id>woate</id>
            <name>刘诚</name>
            <email>woate@qq.com</email>
            <url/>
            <organization>woate</organization>
            <organizationUrl>https://git.oschina.net/woate/Wing</organizationUrl>
            <roles>
                <role>architect</role>
                <role>developer</role>
            </roles>
            <timezone>+8</timezone>
        </developer>
    </developers>
    <organization>
        <name>321Wing</name>
        <url>www.321wing.com</url>
    </organization>
    <scm>
        <connection>scm:git@git.oschina.net:woate/wing.git</connection>
        <developerConnection>scm:git@git.oschina.net:woate/wing.git</developerConnection>
        <url>https://git.oschina.net/woate/wing</url>
    </scm>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context-support</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-tx</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-orm</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
        </dependency>
        <dependency>
            <groupId>c3p0</groupId>
            <artifactId>c3p0</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.persistence</groupId>
            <artifactId>persistence-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.321wing.wingframework</groupId>
            <artifactId>wingframework-annotation</artifactId>
            <version>0.0.1</version>
        </dependency>
        <dependency>
            <groupId>com.321wing.wingframework</groupId>
            <artifactId>wingframework-common</artifactId>
            <version>0.0.1</version>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>
    </dependencies>
</project>
