齿轮易创
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.1 KiB

  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>fumao</artifactId>
  7. <groupId>com.aki</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>fumao-app</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. <exclusions>
  17. <exclusion>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-tomcat</artifactId>
  20. </exclusion>
  21. </exclusions>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-undertow</artifactId>
  26. </dependency>
  27. <!--<dependency>-->
  28. <!--<groupId>org.springframework.boot</groupId>-->
  29. <!--<artifactId>spring-boot-starter-websocket</artifactId>-->
  30. <!--</dependency>-->
  31. <dependency>
  32. <groupId>com.aki</groupId>
  33. <artifactId>fumao-service</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-maven-plugin</artifactId>
  42. <executions>
  43. <execution>
  44. <goals>
  45. <goal>build-info</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. <configuration>
  50. <fork>true</fork>
  51. <includeSystemScope>true</includeSystemScope>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>