Graph database Analysis of the Steam Network
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
4.6 KiB

6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
  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. <groupId>net.jrtechs.www</groupId>
  6. <artifactId>SteamFriendsGraph</artifactId>
  7. <version>0.1</version>
  8. <name>SteamFriendsGraph</name>
  9. <!-- FIXME change it to the project's website -->
  10. <url>http://www.example.com</url>
  11. <properties>
  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. <spark.version>2.7.2</spark.version>
  16. <gson.version>2.8.9</gson.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <version>4.13.1</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.janusgraph</groupId>
  27. <artifactId>janusgraph-berkeleyje</artifactId>
  28. <version>0.3.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.sparkjava</groupId>
  32. <artifactId>spark-core</artifactId>
  33. <version>${spark.version}</version>
  34. </dependency>
  35. <!-- JSON utils -->
  36. <dependency>
  37. <groupId>com.google.code.gson</groupId>
  38. <artifactId>gson</artifactId>
  39. <version>${gson.version}</version>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/org.json/json -->
  42. <dependency>
  43. <groupId>org.json</groupId>
  44. <artifactId>json</artifactId>
  45. <version>20180130</version>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/org.java-websocket/Java-WebSocket -->
  48. <dependency>
  49. <groupId>org.java-websocket</groupId>
  50. <artifactId>Java-WebSocket</artifactId>
  51. <version>1.5.0</version>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/org.janusgraph/janusgraph-core -->
  54. <!--<dependency>-->
  55. <!--<groupId>org.janusgraph</groupId>-->
  56. <!--<artifactId>janusgraph-core</artifactId>-->
  57. <!--<version>0.2.0</version>-->
  58. <!--</dependency>-->
  59. <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.janusgraph/janusgraph-hbase &ndash;&gt;-->
  60. <!--<dependency>-->
  61. <!--<groupId>org.janusgraph</groupId>-->
  62. <!--<artifactId>janusgraph-hbase</artifactId>-->
  63. <!--<version>0.2.0</version>-->
  64. <!--</dependency>-->
  65. <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.janusgraph/janusgraph-es &ndash;&gt;-->
  66. <!--<dependency>-->
  67. <!--<groupId>org.janusgraph</groupId>-->
  68. <!--<artifactId>janusgraph-es</artifactId>-->
  69. <!--<version>0.2.0</version>-->
  70. <!--</dependency>-->
  71. <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.apache.hbase/hbase-client &ndash;&gt;-->
  72. <!--<dependency>-->
  73. <!--<groupId>org.apache.hbase</groupId>-->
  74. <!--<artifactId>hbase-client</artifactId>-->
  75. <!--<version>2.0.0</version>-->
  76. <!--</dependency>-->
  77. </dependencies>
  78. <build>
  79. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  80. <plugins>
  81. <plugin>
  82. <artifactId>maven-clean-plugin</artifactId>
  83. <version>3.0.0</version>
  84. </plugin>
  85. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  86. <plugin>
  87. <artifactId>maven-resources-plugin</artifactId>
  88. <version>3.0.2</version>
  89. </plugin>
  90. <plugin>
  91. <artifactId>maven-compiler-plugin</artifactId>
  92. <version>3.7.0</version>
  93. </plugin>
  94. <plugin>
  95. <artifactId>maven-surefire-plugin</artifactId>
  96. <version>2.20.1</version>
  97. </plugin>
  98. <plugin>
  99. <artifactId>maven-jar-plugin</artifactId>
  100. <version>3.0.2</version>
  101. </plugin>
  102. <plugin>
  103. <artifactId>maven-install-plugin</artifactId>
  104. <version>2.5.2</version>
  105. </plugin>
  106. <plugin>
  107. <artifactId>maven-deploy-plugin</artifactId>
  108. <version>2.8.2</version>
  109. </plugin>
  110. <plugin>
  111. <artifactId>maven-assembly-plugin</artifactId>
  112. <configuration>
  113. <archive>
  114. <manifest>
  115. <mainClass>fully.qualified.MainClass</mainClass>
  116. </manifest>
  117. </archive>
  118. <descriptorRefs>
  119. <descriptorRef>jar-with-dependencies</descriptorRef>
  120. </descriptorRefs>
  121. </configuration>
  122. </plugin>
  123. </plugins>
  124. </pluginManagement>
  125. </build>
  126. </project>