pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <parent>
  6. <artifactId>agileboot</artifactId>
  7. <groupId>com.agileboot</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <packaging>jar</packaging>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>agileboot-api</artifactId>
  13. <description>
  14. 外部API
  15. </description>
  16. <dependencies>
  17. <!-- 核心模块-->
  18. <dependency>
  19. <groupId>com.agileboot</groupId>
  20. <artifactId>agileboot-infrastructure</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-tomcat</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <!--使用undertow依赖-->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-undertow</artifactId>
  32. </dependency>
  33. <!-- 业务领域 -->
  34. <dependency>
  35. <groupId>com.agileboot</groupId>
  36. <artifactId>agileboot-domain</artifactId>
  37. </dependency>
  38. </dependencies>
  39. </project>