pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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-medinsur</artifactId>
  12. <version>${thyy-medinsur}</version>
  13. <name>thyy-medinsur</name>
  14. <description>thyy-medinsur</description>
  15. <properties>
  16. <java.version>21</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.thyy.business</groupId>
  21. <artifactId>thyy-utils</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.opengauss</groupId>
  25. <artifactId>opengauss-jdbc</artifactId>
  26. <version>5.0.0</version>
  27. <scope>provided</scope>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-compiler-plugin</artifactId>
  35. <configuration>
  36. <annotationProcessorPaths>
  37. <path>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. </path>
  41. </annotationProcessorPaths>
  42. </configuration>
  43. </plugin>
  44. <plugin>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-maven-plugin</artifactId>
  47. <configuration>
  48. <excludes>
  49. <exclude>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. </exclude>
  53. </excludes>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>