pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.winhc</groupId>
  7. <artifactId>UDF_Max</artifactId>
  8. <version>0.0.1</version>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <sdk.version>0.33.7-public</sdk.version>
  12. <maven.compiler.source>1.8</maven.compiler.source>
  13. <maven.compiler.target>1.8</maven.compiler.target>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.aliyun.odps</groupId>
  18. <artifactId>odps-sdk-core</artifactId>
  19. <version>${sdk.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.aliyun.odps</groupId>
  23. <artifactId>odps-sdk-udf</artifactId>
  24. <version>${sdk.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.aliyun.odps</groupId>
  28. <artifactId>odps-udf-local</artifactId>
  29. <version>${sdk.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.aliyun.odps</groupId>
  33. <artifactId>odps-sdk-mapred</artifactId>
  34. <version>${sdk.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.aliyun.odps</groupId>
  38. <artifactId>odps-mapred-local</artifactId>
  39. <version>${sdk.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.aliyun.odps</groupId>
  43. <artifactId>odps-sdk-graph</artifactId>
  44. <version>${sdk.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.aliyun.odps</groupId>
  48. <artifactId>odps-graph-local</artifactId>
  49. <version>${sdk.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>junit</groupId>
  53. <artifactId>junit</artifactId>
  54. <version>4.12</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>fastjson</artifactId>
  59. <version>1.2.72</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.hutool</groupId>
  63. <artifactId>hutool-all</artifactId>
  64. <version>5.6.6</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.github.houbb</groupId>
  68. <artifactId>opencc4j</artifactId>
  69. <version>1.7.2</version>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/com.github.stuxuhai/jpinyin -->
  72. <dependency>
  73. <groupId>com.github.stuxuhai</groupId>
  74. <artifactId>jpinyin</artifactId>
  75. <version>1.1.8</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.commons</groupId>
  79. <artifactId>commons-lang3</artifactId>
  80. <version>3.7</version>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  83. <dependency>
  84. <groupId>org.projectlombok</groupId>
  85. <artifactId>lombok</artifactId>
  86. <version>1.18.20</version>
  87. <scope>provided</scope>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-assembly-plugin</artifactId>
  95. <version>2.4.1</version>
  96. <configuration>
  97. <descriptors> <!--描述文件路径-->
  98. <descriptor>src/main/resources/package.xml</descriptor>
  99. </descriptors>
  100. <descriptorRefs>
  101. <descriptorRef>jar-with-dependencies</descriptorRef>
  102. </descriptorRefs>
  103. </configuration>
  104. <executions>
  105. <execution>
  106. <id>make-assembly</id>
  107. <phase>package</phase>
  108. <goals>
  109. <goal>single</goal>
  110. </goals>
  111. </execution>
  112. </executions>
  113. </plugin>
  114. </plugins>
  115. </build>
  116. </project>