pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.com.qmth.examcloud.task</groupId>
  6. <artifactId>examcloud-task</artifactId>
  7. <version>v4.1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>examcloud-task-starter</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>cn.com.qmth.examcloud.task</groupId>
  13. <artifactId>examcloud-task-api-provider</artifactId>
  14. <version>${examcloud.version}</version>
  15. </dependency>
  16. </dependencies>
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-jar-plugin</artifactId>
  22. <configuration>
  23. <archive>
  24. <manifest>
  25. <mainClass>cn.com.qmth.examcloud.task.starter.TaskApp</mainClass>
  26. <addClasspath>true</addClasspath>
  27. <classpathPrefix>./</classpathPrefix>
  28. </manifest>
  29. <manifestEntries>
  30. <Class-Path>../config/</Class-Path>
  31. </manifestEntries>
  32. </archive>
  33. <excludes>
  34. <exclude>*.properties</exclude>
  35. <exclude>*.xml </exclude>
  36. <exclude>classpath.location</exclude>
  37. </excludes>
  38. </configuration>
  39. </plugin>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-assembly-plugin</artifactId>
  43. <configuration>
  44. <finalName>examcloud-task</finalName>
  45. <descriptors>
  46. <descriptor>assembly.xml</descriptor>
  47. </descriptors>
  48. </configuration>
  49. <executions>
  50. <execution>
  51. <id>make-assembly</id>
  52. <phase>install</phase>
  53. <goals>
  54. <goal>assembly</goal>
  55. </goals>
  56. </execution>
  57. </executions>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>