root/cgi-bin/pom.xml @ 3:d4aafdd7418e

Revision 3:d4aafdd7418e, 1.5 KB (checked in by dcaoyuan, 8 months ago)

Reconstructed to a maven project

Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3    <modelVersion>4.0.0</modelVersion>
4    <groupId>org.aiotrade</groupId>
5    <artifactId>cgi-bin</artifactId>
6    <packaging>war</packaging>
7    <version>1.0-SNAPSHOT</version>
8    <name>cgi-bin JEE5 Webapp</name>
9    <url>http://maven.apache.org</url>
10    <dependencies>
11
12        <dependency>
13            <groupId>javax.servlet</groupId>
14            <artifactId>servlet-api</artifactId>
15            <version>2.5</version>
16            <scope>provided</scope>
17        </dependency>
18
19        <dependency>
20            <groupId>javax.servlet.jsp</groupId>
21            <artifactId>jsp-api</artifactId>
22            <version>2.1</version>
23            <scope>provided</scope>
24        </dependency>
25
26        <dependency>
27            <groupId>junit</groupId>
28            <artifactId>junit</artifactId>
29            <version>3.8.1</version>
30            <scope>test</scope>
31        </dependency>
32
33    </dependencies>
34    <build>
35        <plugins>
36            <plugin>
37                <groupId>org.apache.maven.plugins</groupId>
38                <artifactId>maven-compiler-plugin</artifactId>
39                <version>2.0.2</version>
40                <configuration>
41                    <source>1.5</source>
42                    <target>1.5</target>
43                </configuration>
44            </plugin>
45        </plugins>
46        <finalName>cgi-bin</finalName>
47    </build>
48</project>
Note: See TracBrowser for help on using the browser.