Skip to content

Commit

Permalink
Updating pom for release to Jcenter and Maven Central
Browse files Browse the repository at this point in the history
  • Loading branch information
Sriram Keerthi Madhava Kunjathur authored and Sriram Keerthi Madhava Kunjathur committed Apr 14, 2016
1 parent 758b81c commit 67604c8
Showing 1 changed file with 63 additions and 6 deletions.
69 changes: 63 additions & 6 deletions mongordd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,33 @@

<groupId>com.caffinc.sparktools</groupId>
<artifactId>mongordd</artifactId>
<version>1.0</version>
<version>1.0.1</version>

<name>Mongo RDD</name>
<description>MongoDB RDD for Spark</description>
<url>https://github.com/caffinc/mongordd</url>

<developers>
<developer>
<name>Caffinc</name>
<email>[email protected]</email>
<organization>Caffinc</organization>
<organizationUrl>http://www.caffinc.com</organizationUrl>
</developer>
</developers>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>https://github.com/caffinc/mongordd</url>
</scm>

<build>
<plugins>
<plugin>
Expand All @@ -18,35 +44,66 @@
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<properties>
<spark-version>1.6.0</spark-version>
<mongodb-version>3.2.2</mongodb-version>
<slf4j-version>1.7.18</slf4j-version>
<junit-version>4.12</junit-version>
<embeddedmongo-version>1.50.2</embeddedmongo-version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_2.11</artifactId>
<version>1.6.0</version>
<version>${spark-version}</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>3.2.2</version>
<version>${mongodb-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.18</version>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.flapdoodle.embed</groupId>
<artifactId>de.flapdoodle.embed.mongo</artifactId>
<version>1.50.2</version>
<version>${embeddedmongo-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 67604c8

Please sign in to comment.