123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?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>2.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>cat-consumer</artifactId>
- <name>cat-consumer</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>com.dianping.cat</groupId>
- <artifactId>cat-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.dianping.cat</groupId>
- <artifactId>cat-hadoop</artifactId>
- </dependency>
- <dependency>
- <groupId>org.unidal.framework</groupId>
- <artifactId>test-framework</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.unidal.maven.plugins</groupId>
- <artifactId>codegen-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>generate report models</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>dal-model</goal>
- </goals>
- <configuration>
- <manifest>${basedir}/src/main/resources/META-INF/dal/model/transaction-report-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/all-report-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/event-report-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/problem-report-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/heartbeat-report-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/state-report-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/top-report-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/company-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/cross-report-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/matrix-report-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/metric-report-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/dependency-report-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/metric-config-manifest.xml,
- ${basedir}/src/main/resources/META-INF/dal/model/storage-report-manifest.xml,
- </manifest>
- </configuration>
- </execution>
- <execution>
- <id>generate dal jdbc model</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>dal-jdbc</goal>
- </goals>
- <configuration>
- <manifest><![CDATA[${basedir}/src/main/resources/META-INF/dal/jdbc/report-manifest.xml,]]> <![CDATA[${basedir}/src/main/resources/META-INF/dal/jdbc/report-manifest.xml,]]></manifest>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.unidal.maven.plugins</groupId>
- <artifactId>plexus-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>generate plexus component descriptor</id>
- <phase>process-classes</phase>
- <goals>
- <goal>plexus</goal>
- </goals>
- <configuration>
- <className>com.dianping.cat.consumer.build.ComponentsConfigurator</className>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <properties>
- <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
- </properties>
- </project>
|