pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  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>com.tzld.piaoquan</groupId>
  6. <artifactId>recommend-similarity</artifactId>
  7. <version>1.0.0</version>
  8. <name>recommend-similarity</name>
  9. <description>recommend-similarity</description>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.ansj</groupId>
  13. <artifactId>ansj_seg</artifactId>
  14. <version>5.1.6</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.projectlombok</groupId>
  18. <artifactId>lombok</artifactId>
  19. <version>1.18.16</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.commons</groupId>
  23. <artifactId>commons-collections4</artifactId>
  24. <version>4.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.aliyun.oss</groupId>
  28. <artifactId>aliyun-sdk-oss</artifactId>
  29. <version>3.15.1</version>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <!-- <plugin>-->
  35. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  36. <!-- <artifactId>maven-jar-plugin</artifactId>-->
  37. <!-- <version>3.3.0</version>-->
  38. <!-- <executions>-->
  39. <!-- <execution>-->
  40. <!-- <goals>-->
  41. <!-- <goal>jar</goal>-->
  42. <!-- </goals>-->
  43. <!-- </execution>-->
  44. <!-- </executions>-->
  45. <!-- <configuration>-->
  46. <!-- <resources>-->
  47. <!-- <resource>-->
  48. <!-- <directory>src/main/resources</directory>-->
  49. <!-- <includes>-->
  50. <!-- <include>*.properties</include>-->
  51. <!-- </includes>-->
  52. <!-- </resource>-->
  53. <!-- </resources>-->
  54. <!-- </configuration>-->
  55. <!-- </plugin>-->
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-compiler-plugin</artifactId>
  59. <version>3.8.1</version>
  60. <configuration>
  61. <source>1.8</source>
  62. <target>1.8</target>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>