| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor |
| license agreements. See the NOTICE file distributed with this work for additional |
| information regarding copyright ownership. The ASF licenses this file to |
| You under the Apache License, Version 2.0 (the "License"); you may not use |
| this file except in compliance with the License. You may obtain a copy of |
| the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required |
| by applicable law or agreed to in writing, software distributed under the |
| License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS |
| OF ANY KIND, either express or implied. See the License for the specific |
| language governing permissions and limitations under the License. --> |
| <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> |
| <parent> |
| <groupId>org.apache</groupId> |
| <artifactId>apache</artifactId> |
| <version>12</version> |
| <relativePath/> |
| <!-- no parent resolution --> |
| </parent> |
| |
| <groupId>org.apache.htrace</groupId> |
| <artifactId>htrace</artifactId> |
| <version>3.1.0-incubating</version> |
| <packaging>pom</packaging> |
| <name>Apache HTrace</name> |
| <description>A tracing framework for use with distributed systems written in java</description> |
| <url>http://htrace.incubator.apache.org</url> |
| |
| <modules> |
| <module>htrace-core</module> |
| <module>htrace-zipkin</module> |
| <module>htrace-hbase</module> |
| <module>htrace-flume</module> |
| </modules> |
| |
| <licenses> |
| <license> |
| <name>The Apache Software License, Version 2.0</name> |
| <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| <distribution>repo</distribution> |
| <comments>A business-friendly OSS license</comments> |
| </license> |
| </licenses> |
| <scm> |
| <connection>scm:git:http://git-wip-us.apache.org/repos/asf/incubator-htrace.git</connection> |
| <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-htrace.git</developerConnection> |
| <url>https://git-wip-us.apache.org/repos/asf?p=incubator-htrace.git</url> |
| </scm> |
| <issueManagement> |
| <system>JIRA</system> |
| <url>http://issues.apache.org/jira/browse/HTRACE</url> |
| </issueManagement> |
| <ciManagement> |
| <system>hudson</system> |
| <url>https://builds.apache.org/view/H-L/view/HTrace/</url> |
| </ciManagement> |
| <mailingLists> |
| <mailingList> |
| <name>Developer List</name> |
| <subscribe>dev-subscribe@htrace.incubator.apache.org</subscribe> |
| <unsubscribe>dev-unsubscribe@htrace.incubator.apache.org</unsubscribe> |
| <post>dev@htrace.incubator.apache.org</post> |
| <archive>http://mail-archives.apache.org/mod_mbox/incubator-htrace-dev/</archive> |
| </mailingList> |
| <mailingList> |
| <name>Commits List</name> |
| <subscribe>commits-subscribe@htrace.incubator.apache.org</subscribe> |
| <unsubscribe>commits-unsubscribe@htrace.incubator.apache.org</unsubscribe> |
| <archive>http://mail-archives.apache.org/mod_mbox/incubator-htrace-commits/</archive> |
| </mailingList> |
| <mailingList> |
| <name>Issues List</name> |
| <subscribe>issues-subscribe@htrace.incubator.apache.org</subscribe> |
| <unsubscribe>issues-unsubscribe@htrace.incubator.apache.org</unsubscribe> |
| <archive>http://mail-archives.apache.org/mod_mbox/incubator-htrace-issues/</archive> |
| </mailingList> |
| </mailingLists> |
| <developers> |
| <developer> |
| <id>jon</id> |
| <name>Jonathan Leavitt</name> |
| <email>jonathan.leavitt@cloudera.com</email> |
| <timezone>-7</timezone> |
| <organization>Cloudera</organization> |
| <organizationUrl>http://www.cloudera.com</organizationUrl> |
| </developer> |
| <developer> |
| <id>eclark</id> |
| <name>Elliott Clark</name> |
| <email>eclark@apache.org</email> |
| <timezone>-7</timezone> |
| <organization>Cloudera</organization> |
| <organizationUrl>http://www.cloudera.com</organizationUrl> |
| </developer> |
| </developers> |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-source-plugin</artifactId> |
| <version>2.1.2</version> |
| <executions> |
| <execution> |
| <id>attach-sources</id> |
| <phase>package</phase> |
| <goals> |
| <goal>jar-no-fork</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>2.8.1</version> |
| <executions> |
| <execution> |
| <id>attach-javadocs</id> |
| <phase>package</phase> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>2.4</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>test-jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <version>0.11</version> |
| <executions> |
| <execution> |
| <phase>package</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <excludes> |
| <exclude>**/.settings/**</exclude> |
| <exclude>**/d3.min.js</exclude> |
| <exclude>**/dependency-reduced-pom.xml</exclude> |
| <exclude>**/generated/**</exclude> |
| <exclude>*/.settings/*</exclude> |
| <exclude>*/generated/*</exclude> |
| <exclude>*/gopkg.in/*</exclude> |
| <exclude>.git/**</exclude> |
| <exclude>htrace-core/src/go/bin/*</exclude> |
| <exclude>htrace-core/src/go/pkg/*</exclude> |
| <exclue>**/README.md</exclue> |
| <!-- Pulled down sources --> |
| <exclude>**/gopkg.in/**</exclude> |
| <exclude>**/github.com/**</exclude> |
| <exclude>**/golang.org/**</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.5.1</version> |
| <configuration> |
| <source>1.6</source> |
| <target>1.6</target> |
| <optimize>true</optimize> |
| <encoding>UTF-8</encoding> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-gpg-plugin</artifactId> |
| <version>1.1</version> |
| <executions> |
| <execution> |
| <id>sign-artifacts</id> |
| <phase>deploy</phase> |
| <goals> |
| <goal>sign</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <!-- explicitly define maven-deploy-plugin after other to force exec order --> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <version>2.7</version> |
| <executions> |
| <execution> |
| <id>deploy</id> |
| <phase>deploy</phase> |
| <goals> |
| <goal>deploy</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-shade-plugin</artifactId> |
| <version>2.1</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-gpg-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <!-- explicitly define maven-deploy-plugin after other to force exec order --> |
| <artifactId>maven-deploy-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-site-plugin</artifactId> |
| <version>3.4</version> |
| <dependencies> |
| <dependency> |
| <!-- add support for ssh/scp --> |
| <groupId>org.apache.maven.wagon</groupId> |
| <artifactId>wagon-ssh</artifactId> |
| <version>2.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven.doxia</groupId> |
| <artifactId>doxia-module-markdown</artifactId> |
| <version>1.6</version> |
| </dependency> |
| <dependency> |
| <groupId>lt.velykis.maven.skins</groupId> |
| <artifactId>reflow-velocity-tools</artifactId> |
| <version>1.1.1</version> |
| </dependency> |
| <!-- Reflow skin requires Velocity >= 1.7 --> |
| <dependency> |
| <groupId>org.apache.velocity</groupId> |
| <artifactId>velocity</artifactId> |
| <version>1.7</version> |
| </dependency> |
| </dependencies> |
| <configuration> |
| <siteDirectory>${basedir}/src/main/site</siteDirectory> |
| <inputEncoding>UTF-8</inputEncoding> |
| <outputEncoding>UTF-8</outputEncoding> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <version>2.5.3</version> |
| <configuration> |
| <!--Do not attach assembly to project.--> |
| <attach>false</attach> |
| <tarLongFileMode>gnu</tarLongFileMode> |
| <finalName>htrace-${project.version}</finalName> |
| <descriptors> |
| <descriptor>src/main/assembly/src.xml</descriptor> |
| </descriptors> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <redirectTestOutputToFile>true</redirectTestOutputToFile> |
| <systemPropertyVariables> |
| <java.io.tmpdir>${project.build.directory}</java.io.tmpdir> |
| </systemPropertyVariables> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| <properties> |
| <targetJdk>1.6</targetJdk> |
| <failIfNoTests>false</failIfNoTests> |
| </properties> |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging</artifactId> |
| <version>1.1.1</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>12.0.1</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.10</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| <distributionManagement> |
| <site> |
| <id>htrace.incubator.apache.org</id> |
| <name>HTrace Website at incubator.apache.org</name> |
| <!-- On why this is the tmp dir and not hbase.apache.org, see |
| https://issues.apache.org/jira/browse/HBASE-7593?focusedCommentId=13555866&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13555866 |
| --> |
| <url>file:///tmp</url> |
| </site> |
| </distributionManagement> |
| </project> |