pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>xps-server</artifactId>
  7. <groupId>com.zhyc</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>xps-application</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <name>xps-app</name>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <maven.compiler.source>17</maven.compiler.source>
  16. <maven.compiler.target>17</maven.compiler.target>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.zhyc</groupId>
  21. <artifactId>xps-common</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.zhyc</groupId>
  26. <artifactId>xps-sys</artifactId>
  27. <version>0.0.1-SNAPSHOT</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.zhyc</groupId>
  31. <artifactId>xps-bpm</artifactId>
  32. <version>0.0.1-SNAPSHOT</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.zhyc</groupId>
  36. <artifactId>xps-aqpt</artifactId>
  37. <version>0.0.1-SNAPSHOT</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.zhyc</groupId>
  41. <artifactId>xps-nhc</artifactId>
  42. <version>0.0.1-SNAPSHOT</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.zhyc</groupId>
  46. <artifactId>xps-hos</artifactId>
  47. <version>0.0.1-SNAPSHOT</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.zhyc</groupId>
  51. <artifactId>xps-lylc</artifactId>
  52. <version>0.0.1-SNAPSHOT</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.zhyc</groupId>
  56. <artifactId>xps-goaf</artifactId>
  57. <version>0.0.1-SNAPSHOT</version>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. <version>3.0.4</version>
  66. <configuration>
  67. <mainClass>com.zhyc.xps.XPSApplication</mainClass>
  68. <layers>
  69. <enabled>true</enabled>
  70. </layers>
  71. </configuration>
  72. <executions>
  73. <execution>
  74. <goals>
  75. <goal>repackage</goal>
  76. </goals>
  77. </execution>
  78. </executions>
  79. </plugin>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-jar-plugin</artifactId>
  83. <version>3.2.0</version>
  84. <configuration>
  85. <excludes>
  86. </excludes>
  87. </configuration>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-resources-plugin</artifactId>
  92. <version>3.2.0</version>
  93. <configuration>
  94. <propertiesEncoding>UTF-8</propertiesEncoding>
  95. </configuration>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>