pom.xml 4.7 KB
Newer Older
F
Frankie Wu 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
Y
youyong205 已提交
2 3 4 5
<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>
F
Frankie Wu 已提交
6
      <version>1.3.6</version>
Y
youyong205 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>cat-core</artifactId>
   <name>cat-core</name>
   <packaging>jar</packaging>
   <dependencies>
      <dependency>
         <groupId>com.dianping.cat</groupId>
         <artifactId>cat-client</artifactId>
      </dependency>
      <dependency>
         <groupId>org.unidal.framework</groupId>
         <artifactId>foundation-service</artifactId>
      </dependency>
      <dependency>
         <groupId>org.unidal.framework</groupId>
         <artifactId>web-framework</artifactId>
      </dependency>
      <dependency>
         <groupId>org.unidal.framework</groupId>
         <artifactId>dal-jdbc</artifactId>
      </dependency>
      <dependency>
         <groupId>javax.servlet</groupId>
         <artifactId>servlet-api</artifactId>
         <scope>provided</scope>
      </dependency>
      <dependency>
         <groupId>log4j</groupId>
         <artifactId>log4j</artifactId>
         <optional>true</optional>
         <scope>provided</scope>
      </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>
         <version>1.6</version>
      </dependency>
   </dependencies>
   <build>
      <plugins>
         <plugin>
            <groupId>org.unidal.maven.plugins</groupId>
            <artifactId>codegen-maven-plugin</artifactId>
            <executions>
               <execution>
                  <id>generate data model</id>
                  <phase>generate-sources</phase>
                  <goals>
                     <goal>dal-model</goal>
                  </goals>
                  <configuration>
                     <manifest>${basedir}/src/main/resources/META-INF/dal/model/server-manifest.xml,
Y
youyong205 已提交
65
								${basedir}/src/main/resources/META-INF/dal/model/command-format-manifest.xml,
Y
youyong205 已提交
66 67 68 69 70
								${basedir}/src/main/resources/META-INF/dal/model/url-pattern-manifest.xml,
								${basedir}/src/main/resources/META-INF/dal/model/aggreation-manifest.xml,
								${basedir}/src/main/resources/META-INF/dal/model/app-config-manifest.xml,
								${basedir}/src/main/resources/META-INF/dal/model/app-comparison-config-manifest.xml,
								${basedir}/src/main/resources/META-INF/dal/model/app-speed-config-manifest.xml,
71 72 73
								${basedir}/src/main/resources/META-INF/dal/model/black-manifest.xml,
								${basedir}/src/main/resources/META-INF/dal/model/server-filter-config-manifest.xml,
					 </manifest>
Y
youyong205 已提交
74 75 76 77 78 79 80 81 82 83
                  </configuration>
               </execution>
               <execution>
                  <id>generate dal jdbc model</id>
                  <phase>generate-sources</phase>
                  <goals>
                     <goal>dal-jdbc</goal>
                  </goals>
                  <configuration>
                     <manifest>${basedir}/src/main/resources/META-INF/dal/jdbc/report-manifest.xml,
Y
youyong205 已提交
84
								${basedir}/src/main/resources/META-INF/dal/jdbc/config-manifest.xml,
Y
youyong205 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
								${basedir}/src/main/resources/META-INF/dal/jdbc/app-manifest.xml, <![CDATA[,
                        ${basedir}/src/main/resources/META-INF/dal/jdbc/report-manifest.xml,
                        ${basedir}/src/main/resources/META-INF/dal/jdbc/config-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.build.ComponentsConfigurator</className>
                  </configuration>
               </execution>
            </executions>
         </plugin>
      </plugins>
   </build>
   <properties>
      <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
   </properties>
F
Frankie Wu 已提交
114
</project>
115