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.

152 lines
4.9 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 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. <gson.version>2.8.5</gson.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>junit</groupId>
  20. <artifactId>junit</artifactId>
  21. <version>4.11</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <!-- https://mvnrepository.com/artifact/com.tinkerpop/gremlin-core -->
  25. <dependency>
  26. <groupId>com.tinkerpop</groupId>
  27. <artifactId>gremlin-core</artifactId>
  28. <version>3.0.0.M7</version>
  29. </dependency>
  30. <!-- https://mvnrepository.com/artifact/org.apache.tinkerpop/gremlin-driver -->
  31. <dependency>
  32. <groupId>org.apache.tinkerpop</groupId>
  33. <artifactId>gremlin-driver</artifactId>
  34. <version>3.3.3</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.tinkerpop</groupId>
  38. <artifactId>tinkergraph-gremlin</artifactId>
  39. <version>3.3.3</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.3.0</version>
  52. </dependency>
  53. <!-- JSON utils -->
  54. <dependency>
  55. <groupId>com.google.code.gson</groupId>
  56. <artifactId>gson</artifactId>
  57. <version>${gson.version}</version>
  58. </dependency>
  59. <!-- https://mvnrepository.com/artifact/org.janusgraph/janusgraph-core -->
  60. <!--<dependency>-->
  61. <!--<groupId>org.janusgraph</groupId>-->
  62. <!--<artifactId>janusgraph-core</artifactId>-->
  63. <!--<version>0.2.0</version>-->
  64. <!--</dependency>-->
  65. <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.janusgraph/janusgraph-hbase &ndash;&gt;-->
  66. <!--<dependency>-->
  67. <!--<groupId>org.janusgraph</groupId>-->
  68. <!--<artifactId>janusgraph-hbase</artifactId>-->
  69. <!--<version>0.2.0</version>-->
  70. <!--</dependency>-->
  71. <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.janusgraph/janusgraph-es &ndash;&gt;-->
  72. <!--<dependency>-->
  73. <!--<groupId>org.janusgraph</groupId>-->
  74. <!--<artifactId>janusgraph-es</artifactId>-->
  75. <!--<version>0.2.0</version>-->
  76. <!--</dependency>-->
  77. <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.apache.hbase/hbase-client &ndash;&gt;-->
  78. <!--<dependency>-->
  79. <!--<groupId>org.apache.hbase</groupId>-->
  80. <!--<artifactId>hbase-client</artifactId>-->
  81. <!--<version>2.0.0</version>-->
  82. <!--</dependency>-->
  83. </dependencies>
  84. <build>
  85. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  86. <plugins>
  87. <plugin>
  88. <artifactId>maven-clean-plugin</artifactId>
  89. <version>3.0.0</version>
  90. </plugin>
  91. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  92. <plugin>
  93. <artifactId>maven-resources-plugin</artifactId>
  94. <version>3.0.2</version>
  95. </plugin>
  96. <plugin>
  97. <artifactId>maven-compiler-plugin</artifactId>
  98. <version>3.7.0</version>
  99. </plugin>
  100. <plugin>
  101. <artifactId>maven-surefire-plugin</artifactId>
  102. <version>2.20.1</version>
  103. </plugin>
  104. <plugin>
  105. <artifactId>maven-jar-plugin</artifactId>
  106. <version>3.0.2</version>
  107. </plugin>
  108. <plugin>
  109. <artifactId>maven-install-plugin</artifactId>
  110. <version>2.5.2</version>
  111. </plugin>
  112. <plugin>
  113. <artifactId>maven-deploy-plugin</artifactId>
  114. <version>2.8.2</version>
  115. </plugin>
  116. <plugin>
  117. <artifactId>maven-assembly-plugin</artifactId>
  118. <configuration>
  119. <archive>
  120. <manifest>
  121. <mainClass>fully.qualified.MainClass</mainClass>
  122. </manifest>
  123. </archive>
  124. <descriptorRefs>
  125. <descriptorRef>jar-with-dependencies</descriptorRef>
  126. </descriptorRefs>
  127. </configuration>
  128. </plugin>
  129. </plugins>
  130. </pluginManagement>
  131. </build>
  132. </project>