pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.thyy.business</groupId>
  7. <artifactId>thyy-business</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <groupId>org.thyy</groupId>
  11. <artifactId>thyy-thirdpart-api</artifactId>
  12. <version>${thyy-thirdpart-api}</version>
  13. <name>thyy-thirdpart-api</name>
  14. <description>thyy-thirdpart-api</description>
  15. <properties>
  16. <java.version>21</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cn.xfyun</groupId>
  21. <artifactId>websdk-java-speech</artifactId>
  22. <version>2.0.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.thyy.business</groupId>
  26. <artifactId>thyy-utils</artifactId>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-compiler-plugin</artifactId>
  34. <configuration>
  35. <annotationProcessorPaths>
  36. <path>
  37. <groupId>org.projectlombok</groupId>
  38. <artifactId>lombok</artifactId>
  39. </path>
  40. </annotationProcessorPaths>
  41. </configuration>
  42. </plugin>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. <configuration>
  47. <excludes>
  48. <exclude>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. </exclude>
  52. </excludes>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>