pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.2.RELEASE</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>net.mingsoft</groupId>
  12. <artifactId>mcms</artifactId>
  13. <version>5.0.0</version>
  14. <name>ms-mcms</name>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <repositories>
  19. <repository>
  20. <id>sonatype-nexus-snapshots</id>
  21. <name>Sonatype Nexus Snapshots</name>
  22. <url>http://repo1.maven.org/maven2/</url>
  23. <releases>
  24. <enabled>true</enabled>
  25. </releases>
  26. <snapshots>
  27. <enabled>true</enabled>
  28. </snapshots>
  29. </repository>
  30. <repository>
  31. <id>sonatype</id>
  32. <name>Sonatype Snapshots</name>
  33. <url>https://oss.sonatype.org/content/groups/public/</url>
  34. <releases>
  35. <enabled>true</enabled>
  36. </releases>
  37. <snapshots>
  38. <enabled>true</enabled>
  39. </snapshots>
  40. </repository>
  41. </repositories>
  42. <dependencies>
  43. <dependency>
  44. <groupId>net.mingsoft</groupId>
  45. <artifactId>ms-mpeople</artifactId>
  46. <version>1.0.24</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.mingsoft</groupId>
  50. <artifactId>ms-basic</artifactId>
  51. <version>1.0.30-SNAPSHOT</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.github.stuxuhai</groupId>
  55. <artifactId>jpinyin</artifactId>
  56. <version>1.1.8</version>
  57. </dependency>
  58. <!-- 此部分是铭飞平台MStroe的客户端(MStore不在铭飞开源产品范围),如果不需要使用MStore可以删除掉 -->
  59. <dependency>
  60. <groupId>net.mingsoft</groupId>
  61. <artifactId>store-client</artifactId>
  62. <version>2.0</version>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <finalName>ms-mcms</finalName>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-compiler-plugin</artifactId>
  71. <version>3.1</version>
  72. <configuration>
  73. <source>${java.version}</source>
  74. <target>${java.version}</target>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-maven-plugin</artifactId>
  80. <executions>
  81. <execution>
  82. <goals>
  83. <goal>repackage</goal>
  84. </goals>
  85. </execution>
  86. </executions>
  87. <configuration>
  88. <fork>true</fork>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. <resources>
  93. <resource>
  94. <directory>src/main/webapp</directory>
  95. </resource>
  96. <resource>
  97. <directory>src/main/resources</directory>
  98. </resource>
  99. <resource>
  100. <directory>src/main/java</directory>
  101. </resource>
  102. </resources>
  103. <defaultGoal>compile</defaultGoal>
  104. </build>
  105. </project>