pom.xml 1.8 KB
Newer Older
F
Frankie Wu 已提交
1 2 3 4 5 6
<?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/maven-v4_0_0.xsd">
	<parent>
		<groupId>com.dianping.cat</groupId>
		<artifactId>parent</artifactId>
7
		<version>0.2.0-SNAPSHOT</version>
F
Frankie Wu 已提交
8 9 10 11 12 13 14 15 16
	</parent>
	<modelVersion>4.0.0</modelVersion>
	<artifactId>cat-core</artifactId>
	<name>CAT Core</name>
	<dependencies>
		<dependency>
			<groupId>com.site.common</groupId>
			<artifactId>lookup</artifactId>
		</dependency>
F
Frankie Wu 已提交
17 18 19 20
		<dependency>
			<groupId>org.jboss.netty</groupId>
			<artifactId>netty</artifactId>
		</dependency>
21
		<dependency>
F
Frankie Wu 已提交
22 23
			<groupId>com.site.common</groupId>
			<artifactId>test-framework</artifactId>
24 25
			<scope>test</scope>
		</dependency>
Y
youyong 已提交
26 27 28 29
		<dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
         </dependency>
F
Frankie Wu 已提交
30
	</dependencies>
Y
youyong 已提交
31 32
	<build>
		<plugins>
F
Frankie Wu 已提交
33 34 35
			<plugin>
				<groupId>com.site.maven.plugins</groupId>
				<artifactId>maven-codegen-plugin</artifactId>
36
				<version>1.0.10</version>
F
Frankie Wu 已提交
37 38 39 40 41 42 43 44 45 46 47
				<executions>
					<execution>
						<id>default-cli</id>
						<phase>generate-sources</phase>
						<goals>
							<goal>dal-model</goal>
						</goals>
						<configuration>
							<manifest>${basedir}/src/main/resources/META-INF/dal/model/manifest.xml</manifest>
						</configuration>
					</execution>
F
Frankie Wu 已提交
48 49 50 51 52 53 54 55 56 57 58
					<execution>
						<id>generate plexus component descriptor</id>
						<phase>process-classes</phase>
						<goals>
							<goal>plexus</goal>
						</goals>
						<configuration>
							<className>com.dianping.cat.build.ComponentsConfigurator</className>
							<env>dev</env>
						</configuration>
					</execution>
F
Frankie Wu 已提交
59 60
				</executions>
			</plugin>
Y
youyong 已提交
61 62
		</plugins>
	</build>
F
Frankie Wu 已提交
63
</project>