123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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>core</artifactId>
- <groupId>cn.com.qmth.examcloud.service</groupId>
- <version>0.1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>core-main</artifactId>
- <dependencies>
- <dependency>
- <groupId>cn.com.qmth.examcloud.service</groupId>
- <artifactId>core-api</artifactId>
- <version>0.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration><!-- 指定该Main Class为全局的唯一入口 -->
- <mainClass>cn.com.qmth.examcloud.service.core.Application</mainClass>
- <layout>ZIP</layout>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|