pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. <parent>
  5. <artifactId>push</artifactId>
  6. <groupId>org.diagbot</groupId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>graph</artifactId>
  11. <name>graph</name>
  12. <!-- FIXME change it to the project's website -->
  13. <url>http://www.example.com</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <maven.compiler.source>1.8</maven.compiler.source>
  17. <maven.compiler.target>1.8</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.diagbot</groupId>
  22. <artifactId>common-service</artifactId>
  23. <version>1.0.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.neo4j</groupId>
  27. <artifactId>neo4j</artifactId>
  28. <version>3.2.9</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.neo4j</groupId>
  32. <artifactId>neo4j-ogm-embedded-driver</artifactId>
  33. <version>3.1.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.neo4j</groupId>
  37. <artifactId>neo4j-ogm-http-driver</artifactId>
  38. <version>3.1.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.neo4j.driver</groupId>
  42. <artifactId>neo4j-java-driver</artifactId>
  43. <version>1.6.1</version>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <resources>
  48. <resource>
  49. <directory>src/main/java</directory>
  50. <includes>
  51. <include>**/*.properties</include>
  52. <include>**/*.xml</include>
  53. <include>**/*.json</include>
  54. </includes>
  55. <filtering>false</filtering>
  56. </resource>
  57. <resource>
  58. <directory>src/main/resources</directory>
  59. <includes>
  60. <include>**/*.*</include>
  61. </includes>
  62. </resource>
  63. </resources>
  64. <finalName>graph</finalName>
  65. </build>
  66. </project>