pom.xml 2.2 KB

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