Skip to content

Commit

Permalink
LIVY-319. Unify the indent for all POM files. (apache#302)
Browse files Browse the repository at this point in the history
Updated pom files that used 4 space indent to use 2 space indent to match the remaining pom files.
  • Loading branch information
ajbozarth authored and alex-the-man committed Mar 4, 2017
1 parent 76d969e commit 126b57e
Show file tree
Hide file tree
Showing 4 changed files with 591 additions and 591 deletions.
96 changes: 48 additions & 48 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,58 +19,58 @@
<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>com.cloudera.livy</groupId>
<artifactId>livy-main</artifactId>
<version>0.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.cloudera.livy</groupId>
<artifactId>livy-examples</artifactId>
<artifactId>livy-main</artifactId>
<version>0.4.0-SNAPSHOT</version>
<packaging>jar</packaging>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>com.cloudera.livy</groupId>
<artifactId>livy-examples</artifactId>
<version>0.4.0-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
<skipTests>true</skipTests>
<skip>true</skip>
<skipDeploy>true</skipDeploy>
</properties>
<properties>
<skipTests>true</skipTests>
<skip>true</skip>
<skipDeploy>true</skipDeploy>
</properties>

<dependencies>
<dependency>
<groupId>com.cloudera.livy</groupId>
<artifactId>livy-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.cloudera.livy</groupId>
<artifactId>livy-scala-api_${scala.binary.version}</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.cloudera.livy</groupId>
<artifactId>livy-client-http</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_${scala.binary.version}</artifactId>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-sql_${scala.binary.version}</artifactId>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-hive_${scala.binary.version}</artifactId>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming_${scala.binary.version}</artifactId>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>com.cloudera.livy</groupId>
<artifactId>livy-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.cloudera.livy</groupId>
<artifactId>livy-scala-api_${scala.binary.version}</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.cloudera.livy</groupId>
<artifactId>livy-client-http</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_${scala.binary.version}</artifactId>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-sql_${scala.binary.version}</artifactId>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-hive_${scala.binary.version}</artifactId>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming_${scala.binary.version}</artifactId>
</dependency>
</dependencies>

</project>
Loading

0 comments on commit 126b57e

Please sign in to comment.