pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?><!--
  2. ~ Copyright (c) 2014, 2023, Chengdu Minto Technology Co.,LTD. All rights reserved.
  3. ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4. -->
  5. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <parent>
  7. <artifactId>tip-root</artifactId>
  8. <groupId>com.minto</groupId>
  9. <version>standard_V8.0_SP1_feature_M7</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>minto-tip-front</artifactId>
  13. <packaging>war</packaging>
  14. <name>tip-front</name>
  15. <description>工作目标管理平台</description>
  16. <properties>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.minto</groupId>
  23. <artifactId>minto-tip-api</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.minto</groupId>
  27. <artifactId>minto-tip-kernel</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.minto</groupId>
  31. <artifactId>minto-tip-bff</artifactId>
  32. <scope>runtime</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.docx4j</groupId>
  36. <artifactId>docx4j-ImportXHTML</artifactId>
  37. </dependency>
  38. <!-- 静态资源压缩 -->
  39. <dependency>
  40. <groupId>ro.isdc.wro4j</groupId>
  41. <artifactId>wro4j-core</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>javax.servlet</groupId>
  45. <artifactId>javax.servlet-api</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>javax.servlet</groupId>
  49. <artifactId>jstl</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>javax.servlet.jsp</groupId>
  53. <artifactId>javax.servlet.jsp-api</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.taglibs</groupId>
  57. <artifactId>taglibs-standard-impl</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.minto</groupId>
  61. <artifactId>tip-test</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.webjars</groupId>
  66. <artifactId>webjars-locator-core</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.webjars</groupId>
  70. <artifactId>sockjs-client</artifactId>
  71. <version>1.1.2</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.webjars</groupId>
  75. <artifactId>stomp-websocket</artifactId>
  76. <version>2.3.3</version>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <finalName>minto</finalName>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-deploy-plugin</artifactId>
  85. <configuration>
  86. <skip>true</skip>
  87. </configuration>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-war-plugin</artifactId>
  92. <configuration>
  93. <archiveClasses>true</archiveClasses>
  94. <packagingExcludes>
  95. %regex[WEB-INF/lib/(tomcat-).*.*.jar],
  96. %regex[WEB-INF/lib/(postgresql-).*.*.jar],
  97. %regex[WEB-INF/lib/(spring-boot-starter-tomcat-).*.*.jar]
  98. </packagingExcludes>
  99. </configuration>
  100. </plugin>
  101. <!--<plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. <configuration>
  105. <excludes>
  106. <exclude>
  107. <groupId>org.projectlombok</groupId>
  108. <artifactId>lombok</artifactId>
  109. </exclude>
  110. </excludes>
  111. </configuration>
  112. <executions>
  113. <execution>
  114. <goals>
  115. <goal>repackage</goal>
  116. </goals>
  117. </execution>
  118. </executions>
  119. </plugin>-->
  120. </plugins>
  121. </build>
  122. </project>