pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>recommend-feature</artifactId>
  7. <groupId>com.tzld.piaoquan</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>recommend-feature-produce</artifactId>
  12. <properties>
  13. <spark.version>3.5.1</spark.version>
  14. <odps.version>0.48.3-public</odps.version>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.compiler.target>8</maven.compiler.target>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.apache.spark</groupId>
  21. <artifactId>spark-core_2.12</artifactId>
  22. <version>${spark.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>redis.clients</groupId>
  26. <artifactId>jedis</artifactId>
  27. <version>5.1.3</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.redislabs</groupId>
  31. <artifactId>spark-redis_2.12</artifactId>
  32. <version>3.1.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.aliyun.odps</groupId>
  36. <artifactId>odps-sdk-core</artifactId>
  37. <version>${odps.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.aliyun.odps</groupId>
  41. <artifactId>odps-sdk-commons</artifactId>
  42. <version>${odps.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.projectlombok</groupId>
  46. <artifactId>lombok</artifactId>
  47. <version>1.18.24</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.ctrip.framework.apollo</groupId>
  51. <artifactId>apollo-client</artifactId>
  52. <version>1.8.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.slf4j</groupId>
  56. <artifactId>slf4j-simple</artifactId>
  57. <version>1.7.28</version>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-assembly-plugin</artifactId>
  65. <version>2.5.5</version>
  66. <configuration>
  67. <descriptorRefs>
  68. <descriptorRef>jar-with-dependencies</descriptorRef>
  69. </descriptorRefs>
  70. <finalName>${project.name}</finalName>
  71. </configuration>
  72. <executions>
  73. <execution>
  74. <id>make-assembly</id>
  75. <phase>package</phase>
  76. <goals>
  77. <goal>single</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>