您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1年前
1年前
1年前
1年前
1年前
1年前
1年前
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>work.xuye</groupId>
  6. <artifactId>std-news-process</artifactId>
  7. <version>0.0.13-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>transformer</artifactId>
  10. <version>0.0.13-SNAPSHOT</version>
  11. <name>transformer</name>
  12. <description>transformer</description>
  13. <properties>
  14. <java.version>11</java.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>work.xuye</groupId>
  19. <artifactId>common</artifactId>
  20. <version>0.0.13-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.json</groupId>
  24. <artifactId>json</artifactId>
  25. <version>20220924</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.jayway.jsonpath</groupId>
  29. <artifactId>json-path</artifactId>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-maven-plugin</artifactId>
  37. <version>${spring-boot.version}</version>
  38. <executions>
  39. <execution>
  40. <goals>
  41. <goal>repackage</goal>
  42. </goals>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>