12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?xml version="1.0"?>
- <project
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
- xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>cn.com.qmth.examcloud.logic.reports</groupId>
- <artifactId>examcloud-logic-reports</artifactId>
- <version>2.0-SNAPSHOT</version>
- </parent>
- <artifactId>examcloud-logic-reports-starter</artifactId>
- <dependencies>
- <dependency>
- <groupId>cn.com.qmth.examcloud.logic.reports</groupId>
- <artifactId>examcloud-logic-reports-controller</artifactId>
- <version>${examcloud.version}</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <mainClass>org.examcloud.logic.reports.starter.ServiceLogicReportsApplication</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>
|