Skip to content

Commit

Permalink
Fixing build issue due to merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
pwendell committed Nov 11, 2014
1 parent a8c41eb commit f65d17d
Showing 1 changed file with 23 additions and 41 deletions.
64 changes: 23 additions & 41 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,47 +34,6 @@
<name>Spark Project Examples</name>
<url>http://spark.apache.org/</url>

<profiles>
<profile>
<id>kinesis-asl</id>
<dependencies>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming-kinesis-asl_${scala.binary.version}</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${commons.httpclient.version}</version>
</dependency>
</dependencies>
</profile>
<profile>
<id>hbase-hadoop2</id>
<activation>
<property>
<name>hbase.profile</name>
<value>hadoop2</value>
</property>
</activation>
<properties>
<hbase.version>0.98.7-hadoop2</hbase.version>
</properties>
</profile>
<profile>
<id>hbase-hadoop1</id>
<activation>
<property>
<name>!hbase.profile</name>
</property>
</activation>
<properties>
<hbase.version>0.98.7-hadoop1</hbase.version>
</properties>
</profile>
</profiles>

<dependencies>
<!-- Promote Guava to compile scope in this module so it's included while shading. -->
<dependency>
Expand Down Expand Up @@ -406,6 +365,29 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>hbase-hadoop2</id>
<activation>
<property>
<name>hbase.profile</name>
<value>hadoop2</value>
</property>
</activation>
<properties>
<hbase.version>0.98.7-hadoop2</hbase.version>
</properties>
</profile>
<profile>
<id>hbase-hadoop1</id>
<activation>
<property>
<name>!hbase.profile</name>
</property>
</activation>
<properties>
<hbase.version>0.98.7-hadoop1</hbase.version>
</properties>
</profile>
<profile>
<!-- We add source directories specific to Scala 2.10 and 2.11 since some examples
work only in one and not the other -->
Expand Down

0 comments on commit f65d17d

Please sign in to comment.