pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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>nlp</artifactId>
  11. <name>nlp</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>public</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.diagbot</groupId>
  27. <artifactId>algorithm</artifactId>
  28. <version>1.0.0</version>
  29. </dependency>
  30. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  31. <dependency>
  32. <groupId>org.apache.poi</groupId>
  33. <artifactId>poi-ooxml</artifactId>
  34. <version>3.17</version>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/org.mongodb/bson -->
  37. <dependency>
  38. <groupId>org.mongodb</groupId>
  39. <artifactId>bson</artifactId>
  40. <version>3.10.2</version>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <resources>
  45. <resource>
  46. <directory>src/main/java</directory>
  47. <includes>
  48. <include>**/*.properties</include>
  49. <include>**/*.xml</include>
  50. <include>**/*.json</include>
  51. </includes>
  52. <filtering>false</filtering>
  53. </resource>
  54. <resource>
  55. <directory>src/main/resources</directory>
  56. <includes>
  57. <include>**/*.*</include>
  58. </includes>
  59. </resource>
  60. </resources>
  61. <finalName>nlp</finalName>
  62. </build>
  63. </project>