Advertisement
Guest User

pom.xml TridentWordCount MongoDB

a guest
Sep 11th, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.23 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>test</groupId>
  5.     <artifactId>TridentWordCount</artifactId>
  6.     <version>0.0.1</version>
  7.     <build>
  8.         <plugins>
  9.             <plugin>
  10.                 <groupId>org.apache.maven.plugins</groupId>
  11.                 <artifactId>maven-compiler-plugin</artifactId>
  12.                 <version>2.3.2</version>
  13.                 <configuration>
  14.                     <source>1.6</source>
  15.                     <target>1.6</target>
  16.                 </configuration>
  17.             </plugin>
  18.         </plugins>
  19.     </build>
  20.     <repositories>
  21.         <repository>
  22.             <id>clojars.org</id>
  23.             <url>http://clojars.org/repo</url>
  24.         </repository>
  25.     </repositories>
  26.     <dependencies>
  27.         <dependency>
  28.             <groupId>storm</groupId>
  29.             <artifactId>storm</artifactId>
  30.             <version>0.8.1-wip6</version>
  31.             <scope>provided</scope>
  32.         </dependency>
  33.  
  34.         <dependency>
  35.             <groupId>org.jongo</groupId>
  36.             <artifactId>jongo</artifactId>
  37.             <version>0.2</version>
  38.         </dependency>
  39.  
  40.         <dependency>
  41.             <groupId>org.mongodb</groupId>
  42.             <artifactId>mongo-java-driver</artifactId>
  43.             <version>2.7.3</version>
  44.         </dependency>
  45.     </dependencies>
  46. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement