pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. <dependency>
  33. <groupId>com.baomidou</groupId>
  34. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <configuration>
  43. <annotationProcessorPaths>
  44. <path>
  45. <groupId>org.projectlombok</groupId>
  46. <artifactId>lombok</artifactId>
  47. </path>
  48. </annotationProcessorPaths>
  49. </configuration>
  50. </plugin>
  51. <plugin>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-maven-plugin</artifactId>
  54. <configuration>
  55. <excludes>
  56. <exclude>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. </exclude>
  60. </excludes>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>