pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>net.mingsoft</groupId>
  7. <artifactId>ms-pom</artifactId>
  8. <version>2.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>net.mingsoft</groupId>
  12. <artifactId>mcms</artifactId>
  13. <version>5.1-SNAPSHOT</version>
  14. <name>ms-mcms</name>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>net.mingsoft</groupId>
  21. <artifactId>ms-mpeople</artifactId>
  22. </dependency>
  23. <!-- 此部分是铭飞平台MStroe的客户端(MStore不在铭飞开源产品范围),如果不需要使用MStore可以删除掉 -->
  24. <dependency>
  25. <groupId>net.mingsoft</groupId>
  26. <artifactId>store-client</artifactId>
  27. <version>2.0</version>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <finalName>ms-mcms</finalName>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-compiler-plugin</artifactId>
  36. <version>3.1</version>
  37. <configuration>
  38. <source>${java.version}</source>
  39. <target>${java.version}</target>
  40. </configuration>
  41. </plugin>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. <executions>
  46. <execution>
  47. <goals>
  48. <goal>repackage</goal>
  49. </goals>
  50. </execution>
  51. </executions>
  52. <configuration>
  53. <fork>true</fork>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. <resources>
  58. <resource>
  59. <directory>src/main/webapp</directory>
  60. </resource>
  61. <resource>
  62. <directory>src/main/resources</directory>
  63. </resource>
  64. <resource>
  65. <directory>src/main/java</directory>
  66. </resource>
  67. </resources>
  68. <defaultGoal>compile</defaultGoal>
  69. </build>
  70. </project>