pom.xml 1.7 KB
Newer Older
F
Frankie Wu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?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>
		<version>0.1.0</version>
	</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 22 23 24 25
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
F
Frankie Wu 已提交
26
	</dependencies>
Y
youyong 已提交
27 28
	<build>
		<plugins>
F
Frankie Wu 已提交
29 30 31
			<plugin>
				<groupId>com.site.maven.plugins</groupId>
				<artifactId>maven-codegen-plugin</artifactId>
F
Frankie Wu 已提交
32
				<version>1.0.8</version>
F
Frankie Wu 已提交
33 34 35 36 37 38 39 40 41 42 43
				<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 已提交
44 45 46 47 48 49 50 51 52 53 54
					<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 已提交
55 56
				</executions>
			</plugin>
Y
youyong 已提交
57 58
		</plugins>
	</build>
F
Frankie Wu 已提交
59
</project>