Advertisement
Guest User

Untitled

a guest
Apr 16th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.46 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5.  
  6. <groupId>br.com.itecnove</groupId>
  7. <artifactId>audiolize</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10.  
  11. <name>audiolize</name>
  12. <description>Demo project for Spring Boot</description>
  13.  
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>1.5.8.RELEASE</version>
  18. <relativePath /> <!-- lookup parent from repository -->
  19. </parent>
  20.  
  21. <properties>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. <java.version>1.8</java.version>
  25. </properties>
  26.  
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-data-jpa</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-rest</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40.  
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-test</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46.  
  47. <dependency>
  48. <groupId>com.ibm.watson.developer_cloud</groupId>
  49. <artifactId>java-sdk</artifactId>
  50. <version>3.9.1</version>
  51. </dependency>
  52.  
  53. <dependency>
  54. <groupId>com.h2database</groupId>
  55. <artifactId>h2</artifactId>
  56. <version>1.4.196</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>commons-io</groupId>
  60. <artifactId>commons-io</artifactId>
  61. <version>2.3</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.mongodb</groupId>
  69. <artifactId>mongodb-driver</artifactId>
  70. <version>3.5.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.iheartradio.m3u8</groupId>
  74. <artifactId>open-m3u8</artifactId>
  75. <version>0.2.4</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.mp4parser</groupId>
  79. <artifactId>isoparser</artifactId>
  80. <version>1.9.27</version>
  81. </dependency>
  82.  
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-security</artifactId>
  86. </dependency>
  87.  
  88. <dependency>
  89. <groupId>io.jsonwebtoken</groupId>
  90. <artifactId>jjwt</artifactId>
  91. <version>0.9.0</version>
  92. </dependency>
  93.  
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-devtools</artifactId>
  97. </dependency>
  98.  
  99. <dependency>
  100. <groupId>it.sauronsoftware</groupId>
  101. <artifactId>jave</artifactId>
  102. <version>2.0</version>
  103. </dependency>
  104.  
  105. <dependency>
  106. <groupId>it.sauronsoftware</groupId>
  107. <artifactId>javelinux</artifactId>
  108. <version>2.0</version>
  109. </dependency>
  110.  
  111. <dependency>
  112. <groupId>com.googlecode.mp4parser</groupId>
  113. <artifactId>isoparser</artifactId>
  114. <version>1.0.2</version>
  115. </dependency>
  116.  
  117. <dependency>
  118. <groupId>org.elasticsearch</groupId>
  119. <artifactId>elasticsearch</artifactId>
  120. <version>6.1.1</version>
  121. </dependency>
  122.  
  123. <dependency>
  124. <groupId>org.elasticsearch.client</groupId>
  125. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  126. <version>6.1.1</version>
  127. </dependency>
  128.  
  129. <dependency>
  130. <groupId>org.twitter4j</groupId>
  131. <artifactId>twitter4j-core</artifactId>
  132. <version>[4.0,)</version>
  133. </dependency>
  134.  
  135. <dependency>
  136. <groupId>net.swisstech</groupId>
  137. <artifactId>bitly-api-client</artifactId>
  138. <version>0.8.0</version>
  139. </dependency>
  140. </dependencies>
  141.  
  142. <repositories>
  143. <repository>
  144. <id>central</id>
  145. <name>bintray</name>
  146. <url>http://jcenter.bintray.com</url>
  147. </repository>
  148.  
  149. <repository>
  150. <id>duyuRepo</id>
  151. <url>file:///home/joao/Documents/itecnove/repo</url>
  152. </repository>
  153. </repositories>
  154.  
  155. <build>
  156. <plugins>
  157. <plugin>
  158. <groupId>org.springframework.boot</groupId>
  159. <artifactId>spring-boot-maven-plugin</artifactId>
  160. </plugin>
  161. </plugins>
  162. </build>
  163.  
  164. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement