123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>toflyframwork</artifactId>
- <groupId>com.tofly</groupId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>tofly-common</artifactId>
- <packaging>pom</packaging>
- <groupId>com.tofly</groupId>
- <version>1.0.0</version>
- <modules>
- <module>common-core</module>
- <module>common-log</module>
- <module>common-oauth</module>
- <module>common-websocket</module>
- <!--<module>common-schedule</module>-->
- <module>common-interface</module>
- <module>common-es</module>
- <module>common-mq</module>
- <module>common-webapp</module>
- </modules>
- <dependencies>
- <!-- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <exclusions>
- <!–排除tomcat依赖–>
- <exclusion>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- <groupId>org.springframework.boot</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-undertow</artifactId>
- </dependency>-->
- </dependencies>
- <distributionManagement>
- <repository>
- <id>nexus-releases</id>
- <name>Nexus Release Repository</name>
- <url>http://192.168.2.231:8081/nexus/content/repositories/thirdparty</url>
- </repository>
- </distributionManagement>
- </project>
|