Advertisement
latihan

pom.xml

Apr 26th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.72 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" 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.idxincubator</groupId>
  5. <artifactId>latihan</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <properties>
  9. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10. <maven.compiler.source>1.8</maven.compiler.source>
  11. <maven.compiler.target>1.8</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>1.8</maven.compiler.source>
  14. <maven.compiler.target>1.8</maven.compiler.target>
  15. <log4j.version>1.2.17</log4j.version>
  16. <slf4j.version>1.7.25</slf4j.version>
  17. <mongo.version>3.5.0</mongo.version>
  18. <junit.version>4.12</junit.version>
  19. <spark.version>2.6.0</spark.version>
  20. <json-simple.version>1.1.1</json-simple.version>
  21. <httpclient.version>4.5.3</httpclient.version>
  22. <spark-freemarker.version>2.5.5</spark-freemarker.version>
  23. <dom4j.version>2.1.0</dom4j.version>
  24. <fileupload.version>1.3.3</fileupload.version>
  25. <facebook4j.version>[2.4,)</facebook4j.version>
  26. <twitter4.verson>[4.0,)</twitter4.verson>
  27. <mail.version>1.4.7</mail.version>
  28. <javax.mail-api.version>1.5.5</javax.mail-api.version>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>junit</groupId>
  33. <artifactId>junit</artifactId>
  34. <version>${junit.version}</version>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.sparkjava</groupId>
  39. <artifactId>spark-core</artifactId>
  40. <version>${spark.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.googlecode.json-simple</groupId>
  44. <artifactId>json-simple</artifactId>
  45. <version>${json-simple.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>log4j</groupId>
  49. <artifactId>log4j</artifactId>
  50. <version>${log4j.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.slf4j</groupId>
  54. <artifactId>slf4j-api</artifactId>
  55. <version>${slf4j.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.slf4j</groupId>
  59. <artifactId>slf4j-simple</artifactId>
  60. <version>${slf4j.version}</version>
  61. </dependency>
  62. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  63. <dependency>
  64. <groupId>org.apache.httpcomponents</groupId>
  65. <artifactId>httpclient</artifactId>
  66. <version>${httpclient.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.sparkjava</groupId>
  70. <artifactId>spark-template-freemarker</artifactId>
  71. <version>${spark-freemarker.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.dom4j</groupId>
  75. <artifactId>dom4j</artifactId>
  76. <version>${dom4j.version}</version>
  77. </dependency>
  78. <!-- MongoDB Java Driver -->
  79. <dependency>
  80. <groupId>org.mongodb</groupId>
  81. <artifactId>mongo-java-driver</artifactId>
  82. <version>${mongo.version}</version>
  83. </dependency>
  84.  
  85. <dependency>
  86. <groupId>commons-fileupload</groupId>
  87. <artifactId>commons-fileupload</artifactId>
  88. <version>${fileupload.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.facebook4j</groupId>
  92. <artifactId>facebook4j-core</artifactId>
  93. <version>${facebook4j.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.twitter4j</groupId>
  97. <artifactId>twitter4j-core</artifactId>
  98. <version>${twitter4.verson}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>javax.mail</groupId>
  102. <artifactId>mail</artifactId>
  103. <version>${mail.version}</version>
  104. </dependency>
  105.  
  106. <dependency>
  107. <groupId>javax.mail</groupId>
  108. <artifactId>javax.mail-api</artifactId>
  109. <version>${javax.mail-api.version}</version>
  110. </dependency>
  111.  
  112. </dependencies>
  113. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement