pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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.hospitalized</groupId>
  7. <artifactId>thyy-hospitalized</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <groupId>org.thyy.doctor</groupId>
  11. <artifactId>thyy-doctor</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>thyy-doctor</name>
  14. <description>thyy-doctor</description>
  15. <properties>
  16. <java.version>21</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.thyy</groupId>
  21. <artifactId>thyy-gateway</artifactId>
  22. <version>0.0.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.thyy.business</groupId>
  26. <artifactId>thyy-utils</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-validation</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <configuration>
  39. <annotationProcessorPaths>
  40. <path>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. </path>
  44. </annotationProcessorPaths>
  45. </configuration>
  46. </plugin>
  47. <plugin>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-maven-plugin</artifactId>
  50. <configuration>
  51. <excludes>
  52. <exclude>
  53. <groupId>org.projectlombok</groupId>
  54. <artifactId>lombok</artifactId>
  55. </exclude>
  56. </excludes>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>