pom.xml 4.1 KB
Newer Older
武汉红喜's avatar
武汉红喜 已提交
1 2 3 4
<?xml version="1.0" encoding="UTF-8"?>
<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">
武汉红喜's avatar
武汉红喜 已提交
5 6
    <modelVersion>4.0.0</modelVersion>

武汉红喜's avatar
武汉红喜 已提交
7
    <parent>
武汉红喜's avatar
武汉红喜 已提交
8
        <artifactId>whatsmars-earth</artifactId>
武汉红喜's avatar
武汉红喜 已提交
9
        <groupId>org.hongxi</groupId>
武汉红喜's avatar
武汉红喜 已提交
10
        <version>Rocket.S2</version>
武汉红喜's avatar
武汉红喜 已提交
11 12
    </parent>

武汉红喜's avatar
earth  
武汉红喜 已提交
13
    <artifactId>whatsmars-earth-support-web</artifactId>
武汉红喜's avatar
武汉红喜 已提交
14
    <packaging>war</packaging>
武汉红喜's avatar
pom  
武汉红喜 已提交
15
    <name>${project.artifactId}</name>
武汉红喜's avatar
武汉红喜 已提交
16
    <description>Another Controller Module</description>
武汉红喜's avatar
武汉红喜 已提交
17

武汉红喜's avatar
武汉红喜 已提交
18
    <dependencies>
武汉红喜's avatar
武汉红喜 已提交
19
        <dependency>
武汉红喜's avatar
武汉红喜 已提交
20
            <groupId>org.hongxi</groupId>
武汉红喜's avatar
earth  
武汉红喜 已提交
21
            <artifactId>whatsmars-earth-service</artifactId>
武汉红喜's avatar
武汉红喜 已提交
22
            <version>Rocket.S2</version>
武汉红喜's avatar
武汉红喜 已提交
23
        </dependency>
武汉红喜's avatar
武汉红喜 已提交
24

武汉红喜's avatar
武汉红喜 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context-support</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
武汉红喜's avatar
武汉红喜 已提交
40 41 42 43 44
        </dependency>

        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
武汉红喜's avatar
武汉红喜 已提交
45 46 47 48
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
武汉红喜's avatar
武汉红喜 已提交
49 50 51 52
        </dependency>
        <dependency>
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
武汉红喜's avatar
武汉红喜 已提交
53 54 55 56 57 58 59
        </dependency>

        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity</artifactId>
        </dependency>
        <dependency>
武汉红喜's avatar
武汉红喜 已提交
60 61
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity-tools</artifactId>
武汉红喜's avatar
武汉红喜 已提交
62 63 64
        </dependency>

        <dependency>
武汉红喜's avatar
武汉红喜 已提交
65 66
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
武汉红喜's avatar
武汉红喜 已提交
67 68 69 70 71
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
武汉红喜's avatar
武汉红喜 已提交
72
            <scope>test</scope>
武汉红喜's avatar
武汉红喜 已提交
73 74 75 76 77 78 79 80 81
        </dependency>

        <dependency>
            <groupId>org.quartz-scheduler</groupId>
            <artifactId>quartz</artifactId>
            <version>2.2.1</version>
        </dependency>

        <dependency>
82 83 84
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <version>1.7.25</version>
武汉红喜's avatar
武汉红喜 已提交
85 86
        </dependency>

S
shenhongxi 已提交
87 88 89 90 91 92 93 94 95
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjtools</artifactId>
        </dependency>

武汉红喜's avatar
武汉红喜 已提交
96
    </dependencies>
武汉红喜's avatar
武汉红喜 已提交
97

武汉红喜's avatar
武汉红喜 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    <build>
        <outputDirectory>src/main/webapp/WEB-INF/classes</outputDirectory>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>

    <profiles>
        <profile>
            <id>development</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <build>
                <filters>
武汉红喜's avatar
武汉红喜 已提交
116
                    <filter>profile/development.properties</filter>
武汉红喜's avatar
武汉红喜 已提交
117 118 119 120 121 122 123
                </filters>
            </build>
        </profile>
        <profile>
            <id>test</id>
            <build>
                <filters>
武汉红喜's avatar
武汉红喜 已提交
124
                    <filter>profile/test.properties</filter>
武汉红喜's avatar
武汉红喜 已提交
125 126 127 128 129 130 131
                </filters>
            </build>
        </profile>
        <profile>
            <id>production</id>
            <build>
                <filters>
武汉红喜's avatar
武汉红喜 已提交
132
                    <filter>profile/production.properties</filter>
武汉红喜's avatar
武汉红喜 已提交
133 134 135 136 137 138 139
                </filters>
            </build>
        </profile>
    </profiles>


</project>