Advertisement
Guest User

Untitled

a guest
Apr 7th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.01 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>openIMAJ</groupId>
  5. <artifactId>openIMAJ</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <repositories>
  8. <repository>
  9. <id>OpenIMAJ maven releases repository</id>
  10. <url>http://maven.openimaj.org</url>
  11. </repository>
  12. <repository>
  13. <id>OpenIMAJ maven snapshots repository</id>
  14. <url>http://snapshots.openimaj.org</url>
  15. </repository>
  16. <repository>
  17. <id>xuggle repo</id>
  18. <url>http://xuggle.googlecode.com/svn/trunk/repo/share/java/</url>
  19. </repository>
  20. </repositories>
  21. <build>
  22. <sourceDirectory>src</sourceDirectory>
  23. <plugins>
  24. <plugin>
  25. <artifactId>maven-compiler-plugin</artifactId>
  26. <version>3.3</version>
  27. <configuration>
  28. <source>1.8</source>
  29. <target>1.8</target>
  30. </configuration>
  31. </plugin>
  32. </plugins>
  33. </build>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.openimaj.content</groupId>
  37. <artifactId>visualisations</artifactId>
  38. <version>1.3.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.openimaj</groupId>
  42. <artifactId>core-audio</artifactId>
  43. <version>1.3.1</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.openimaj.tools</groupId>
  47. <artifactId>FeatureVisualisation</artifactId>
  48. <version>1.3.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.openimaj</groupId>
  52. <artifactId>core</artifactId>
  53. <version>1.0.6-SNAPSHOT</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.openimaj</groupId>
  57. <artifactId>image-feature-extraction</artifactId>
  58. <version>1.3.1</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.openimaj</groupId>
  62. <artifactId>core-video</artifactId>
  63. <version>1.3.1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.openimaj</groupId>
  67. <artifactId>xuggle-video</artifactId>
  68. <version>1.3.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.openimaj</groupId>
  72. <artifactId>audio-processing</artifactId>
  73. <version>1.3.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.openimaj</groupId>
  77. <artifactId>core-feature</artifactId>
  78. <version>1.3.1</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>xuggle</groupId>
  82. <artifactId>xuggle-xuggler</artifactId>
  83. <version>5.4</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.slf4j</groupId>
  87. <artifactId>slf4j-api</artifactId>
  88. <version>1.7.21</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>ch.qos.logback</groupId>
  92. <artifactId>logback-classic</artifactId>
  93. <version>1.1.7</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>ch.qos.logback</groupId>
  97. <artifactId>logback-core</artifactId>
  98. <version>1.1.7</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>log4j</groupId>
  102. <artifactId>log4j</artifactId>
  103. <version>1.2.17</version>
  104. </dependency>
  105. </dependencies>
  106. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement