pom.xml 1.94 KB
<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">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.zhzf.fpj.xcx</groupId>
    <artifactId>fpj-xcx</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>core-webs</artifactId>
  <name>core-webs</name>
  <description>core-webs 所有的外部项目</description>
  <packaging>pom</packaging>

    <properties>
        <javax.servlet.version>3.1.0</javax.servlet.version>
    </properties>

 <modules>
   <module>web-demo</module>
 </modules>

      <dependencies>
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-web</artifactId>
          </dependency>

          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter</artifactId>
              <scope>true</scope>
          </dependency>

          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-test</artifactId>
          </dependency>

          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-actuator</artifactId>
          </dependency>

          <dependency>
              <groupId>com.alibaba.boot</groupId>
              <artifactId>dubbo-spring-boot-starter</artifactId>
          </dependency>

          <dependency>
              <groupId>junit</groupId>
              <artifactId>junit</artifactId>
          </dependency>

          <dependency>
              <groupId>javax.servlet</groupId>
              <artifactId>javax.servlet-api</artifactId>
              <version>${javax.servlet.version}</version>
              <scope>provided</scope>
          </dependency>

      </dependencies>

</project>