pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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.29-SNAPSHOT</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>net.mingsoft</groupId>
  55. <artifactId>ms-upgrader</artifactId>
  56. <version>1.0.18-SNAPSHOT</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.github.stuxuhai</groupId>
  60. <artifactId>jpinyin</artifactId>
  61. <version>1.1.8</version>
  62. </dependency>
  63. <!-- 此部分是铭飞平台MStroe的客户端(MStore不在铭飞开源产品范围),如果不需要使用MStore可以删除掉 -->
  64. <dependency>
  65. <groupId>net.mingsoft</groupId>
  66. <artifactId>ms-upgrader</artifactId>
  67. <version>1.0.17</version>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <finalName>ms-mcms</finalName>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <version>3.1</version>
  77. <configuration>
  78. <source>${java.version}</source>
  79. <target>${java.version}</target>
  80. </configuration>
  81. </plugin>
  82. <plugin>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-maven-plugin</artifactId>
  85. <executions>
  86. <execution>
  87. <goals>
  88. <goal>repackage</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. <configuration>
  93. <fork>true</fork>
  94. </configuration>
  95. </plugin>
  96. </plugins>
  97. <resources>
  98. <resource>
  99. <directory>src/main/webapp</directory>
  100. </resource>
  101. <resource>
  102. <directory>src/main/resources</directory>
  103. </resource>
  104. <resource>
  105. <directory>src/main/java</directory>
  106. </resource>
  107. </resources>
  108. <defaultGoal>compile</defaultGoal>
  109. </build>
  110. </project>