|
@@ -1,25 +1,20 @@
|
|
|
<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>cn.com.qmth.examcloud.task</groupId>
|
|
|
- <artifactId>examcloud-task</artifactId>
|
|
|
- <version>2.0-SNAPSHOT</version>
|
|
|
- </parent>
|
|
|
- <artifactId>examcloud-task-starter</artifactId>
|
|
|
-
|
|
|
- <dependencies>
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <parent>
|
|
|
+ <groupId>cn.com.qmth.examcloud.task</groupId>
|
|
|
+ <artifactId>examcloud-task</artifactId>
|
|
|
+ <version>2.0-SNAPSHOT</version>
|
|
|
+ </parent>
|
|
|
+ <artifactId>examcloud-task-starter</artifactId>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
<dependency>
|
|
|
<groupId>cn.com.qmth.examcloud.task</groupId>
|
|
|
<artifactId>examcloud-task-api-provider</artifactId>
|
|
|
<version>${examcloud.version}</version>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
-
|
|
|
- <!-- 打包成zip -->
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
@@ -64,35 +59,4 @@
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
- <!--
|
|
|
- 打成jar包
|
|
|
- <build>
|
|
|
- <finalName>examcloud-task</finalName>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <fork>true</fork>
|
|
|
- <mainClass>cn.com.qmth.examcloud.task.starter.TaskApp</mainClass> 主类 包含main
|
|
|
- <layout>JAR</layout> -包类型(必须大写) JAR,WAR,ZIP,MODULE,NONE
|
|
|
- </configuration>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <goals>
|
|
|
- <goal>repackage</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </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>
|