pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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>toflyframwork</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tofly-common</artifactId>
  12. <packaging>pom</packaging>
  13. <groupId>com.tofly</groupId>
  14. <version>1.0.0</version>
  15. <modules>
  16. <module>common-core</module>
  17. <module>common-log</module>
  18. <module>common-oauth</module>
  19. <module>common-websocket</module>
  20. <!--<module>common-schedule</module>-->
  21. <module>common-interface</module>
  22. <module>common-es</module>
  23. <module>common-mq</module>
  24. <module>common-webapp</module>
  25. </modules>
  26. <dependencies>
  27. <!-- <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. <exclusions>
  31. &lt;!&ndash;排除tomcat依赖&ndash;&gt;
  32. <exclusion>
  33. <artifactId>spring-boot-starter-tomcat</artifactId>
  34. <groupId>org.springframework.boot</groupId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-undertow</artifactId>
  41. </dependency>-->
  42. </dependencies>
  43. <distributionManagement>
  44. <repository>
  45. <id>nexus-releases</id>
  46. <name>Nexus Release Repository</name>
  47. <url>http://192.168.2.231:8081/nexus/content/repositories/thirdparty</url>
  48. </repository>
  49. </distributionManagement>
  50. </project>