123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.dianping.cat</groupId>
- <artifactId>parent</artifactId>
- <version>2.0.0</version>
- <name>parent</name>
- <description>Central Application Tracking</description>
- <packaging>pom</packaging>
- <modules>
- <module>cat-client</module>
- <module>cat-core</module>
- <module>cat-consumer</module>
- <module>cat-hadoop</module>
- <module>cat-home</module>
- </modules>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.unidal.framework</groupId>
- <artifactId>framework-bom</artifactId>
- <version>${framework.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>com.dianping.cat</groupId>
- <artifactId>cat-client</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.dianping.cat</groupId>
- <artifactId>cat-core</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.dianping.cat</groupId>
- <artifactId>cat-hadoop</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.dianping.cat</groupId>
- <artifactId>cat-consumer</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.dianping.cat</groupId>
- <artifactId>cat-consumer-advanced</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>${servlet-api.version}</version>
- </dependency>
- <dependency>
- <groupId>org.unidal.webres</groupId>
- <artifactId>WebResServer</artifactId>
- <version>1.2.1</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.8.1</version>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty</artifactId>
- <version>6.1.14</version>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-util</artifactId>
- <version>6.1.14</version>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jsp-api-2.1</artifactId>
- <version>6.1.14</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jsp-2.1</artifactId>
- <version>6.1.14</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>5.1.20</version>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- <version>4.0.25.Final</version>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.14</version>
- </dependency>
- <dependency>
- <groupId>org.apache.logging.log4j</groupId>
- <artifactId>log4j-api</artifactId>
- <version>2.3</version>
- </dependency>
- <dependency>
- <groupId>org.apache.logging.log4j</groupId>
- <artifactId>log4j-core</artifactId>
- <version>2.3</version>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>1.1.7</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.7.2</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.5.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.9</version>
- <configuration>
- <includes>
- <include>**/AllTests.java</include>
- </includes>
- <!-- <debugForkedProcess>-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 -Xnoagent -Djava.compiler=NONE</debugForkedProcess> -->
- </configuration>
- <dependencies>
- <dependency>
- <groupId>org.apache.maven.surefire</groupId>
- <artifactId>surefire-junit47</artifactId>
- <version>2.9</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <artifactId>maven-eclipse-plugin</artifactId>
- <version>2.9</version>
- <configuration>
- <downloadSources>true</downloadSources>
- <ajdtVersion>none</ajdtVersion>
- <additionalConfig>
- <file>
- <name>.settings/org.eclipse.jdt.core.prefs</name>
- <content><![CDATA[
- org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
- eclipse.preferences.version=1
- org.eclipse.jdt.core.compiler.source=1.7
- org.eclipse.jdt.core.compiler.compliance=1.7
- ]]></content>
- </file>
- <file>
- <name>.settings/org.eclipse.core.resources.prefs</name>
- <content><![CDATA[
- eclipse.preferences.version=1
- encoding/<project>=UTF-8
- ]]></content>
- </file>
- </additionalConfig>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.unidal.maven.plugins</groupId>
- <artifactId>codegen-maven-plugin</artifactId>
- <version>2.5.8</version>
- </plugin>
- <plugin>
- <groupId>org.unidal.maven.plugins</groupId>
- <artifactId>plexus-maven-plugin</artifactId>
- <version>2.5.8</version>
- </plugin>
- <plugin>
- <groupId>org.eclipse.m2e</groupId>
- <artifactId>lifecycle-mapping</artifactId>
- <version>1.0.0</version>
- <configuration>
- <lifecycleMappingMetadata>
- <pluginExecutions>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>org.unidal.maven.plugins</groupId>
- <artifactId>plexus-maven-plugin</artifactId>
- <versionRange>[2.0,)</versionRange>
- <goals>
- <goal>plexus</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <ignore></ignore>
- </action>
- </pluginExecution>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>org.unidal.maven.plugins</groupId>
- <artifactId>codegen-maven-plugin</artifactId>
- <versionRange>[2.0,)</versionRange>
- <goals>
- <goal>dal-model</goal>
- <goal>dal-jdbc</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <ignore></ignore>
- </action>
- </pluginExecution>
- </pluginExecutions>
- </lifecycleMappingMetadata>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- <plugins>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.2</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <phase>package</phase>
- <goals>
- <goal>jar-no-fork</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>central</id>
- <name>Maven2 Central Repository</name>
- <layout>default</layout>
- <url>http://repo1.maven.org/maven2</url>
- </repository>
- <repository>
- <id>unidal.releases</id>
- <url>http://unidal.org/nexus/content/repositories/releases/</url>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>central</id>
- <url>http://repo1.maven.org/maven2</url>
- </pluginRepository>
- <pluginRepository>
- <id>unidal.releases</id>
- <url>http://unidal.org/nexus/content/repositories/releases/</url>
- </pluginRepository>
- </pluginRepositories>
- <distributionManagement>
- <repository>
- <id>releases</id>
- <url>${releases.repo}</url>
- </repository>
- <snapshotRepository>
- <id>snapshots</id>
- <url>${snapshots.repo}</url>
- </snapshotRepository>
- </distributionManagement>
- <properties>
- <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
- <framework.version>4.0.0</framework.version>
- <jetty.version>9.2.9.v20150224</jetty.version>
- <servlet-api.version>3.1.0</servlet-api.version>
- </properties>
- </project>
|