Bez popisu

pom.xml 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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>com.rdlze</groupId>
  5. <artifactId>radializebase</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>radializebase</name>
  9. <url></url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <version>3.1</version>
  19. <configuration>
  20. <source>1.7</source>
  21. <target>1.7</target>
  22. </configuration>
  23. </plugin>
  24. </plugins>
  25. </build>
  26. <dependencies>
  27. <dependency>
  28. <groupId>junit</groupId>
  29. <artifactId>junit</artifactId>
  30. <version>4.11</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.lucene</groupId>
  34. <artifactId>lucene-queryparser</artifactId>
  35. <version>4.4.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.mahout</groupId>
  39. <artifactId>mahout-core</artifactId>
  40. <version>0.9</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.rdlze</groupId>
  44. <artifactId>radializeutils</artifactId>
  45. <version>0.0.1-SNAPSHOT</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.idealizeframework.irf</groupId>
  49. <artifactId>irf</artifactId>
  50. <version>0.0.1-SNAPSHOT</version>
  51. </dependency>
  52. </dependencies>
  53. </project>