pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.contract</groupId>
  8. <artifactId>contract</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>contract-api</artifactId>
  12. <packaging>jar</packaging>
  13. <description>contract API 接口模块</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.contract</groupId>
  21. <artifactId>contract-entity</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.exchange</groupId>
  25. <artifactId>common-core</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.exchange</groupId>
  29. <artifactId>common-log</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.exchange</groupId>
  33. <artifactId>common-mybatisPlus</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.exchange</groupId>
  37. <artifactId>common-redis</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.exchange</groupId>
  41. <artifactId>common-utils</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.baomidou</groupId>
  45. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <finalName>${project.name}</finalName>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-maven-plugin</artifactId>
  54. <version>2.7.18</version>
  55. <configuration>
  56. <mainClass>com.contract.ContractApplication</mainClass>
  57. <excludes>
  58. <exclude>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. </exclude>
  62. </excludes>
  63. </configuration>
  64. <executions>
  65. <execution>
  66. <id>repackage</id>
  67. <goals>
  68. <goal>repackage</goal>
  69. </goals>
  70. </execution>
  71. </executions>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>