add parent pom - closes apache/incubator-pirk#61
Project: http://git-wip-us.apache.org/repos/asf/incubator-pirk/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-pirk/commit/785dec36 Tree: http://git-wip-us.apache.org/repos/asf/incubator-pirk/tree/785dec36 Diff: http://git-wip-us.apache.org/repos/asf/incubator-pirk/diff/785dec36 Branch: refs/heads/0.1.0 Commit: 785dec363247b882be6387e279432a6782fa25c1 Parents: ed26469 Author: smarthi <[email protected]> Authored: Sat Aug 13 21:43:17 2016 -0400 Committer: eawilliams <[email protected]> Committed: Sat Aug 13 21:43:17 2016 -0400 ---------------------------------------------------------------------- pom.xml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/785dec36/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index d4d8e05..a95f1d6 100644 --- a/pom.xml +++ b/pom.xml @@ -14,6 +14,11 @@ <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache</groupId> + <artifactId>apache</artifactId> + <version>18</version> + </parent> <groupId>org.apache.pirk</groupId> <artifactId>apache-pirk</artifactId> @@ -228,6 +233,18 @@ <groupId>org.apache.storm</groupId> <artifactId>storm-core</artifactId> </exclusion> + <exclusion> + <groupId>cascading</groupId> + <artifactId>cascading-local</artifactId> + </exclusion> + <exclusion> + <groupId>cascading</groupId> + <artifactId>cascading-core</artifactId> + </exclusion> + <exclusion> + <groupId>cascading</groupId> + <artifactId>cascading-hadoop</artifactId> + </exclusion> </exclusions> </dependency> @@ -529,6 +546,19 @@ <ignore /> </action> </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-remote-resources-plugin</artifactId> + <versionRange>[0,)</versionRange> + <goals> + <goal>process</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore/> + </action> + </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration>
